index
01Common-ka/ai-agent-unity-rules
Cursor rule Cursor
This project uses Unity 6.2 (LTS 2025) with modern systems and architectural approaches.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
This project uses Unity 6.2 (LTS 2025) with modern systems and architectural approaches.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Assets/ ├── !Project/ # Main project content (! keeps it at top) │ ├── Art/ │ │ ├── Materials/ │ │ ├── Models/ │ │ ├── Textures/ │ │ └── Animations/ │ ├── Audio/ │ │ ├── Music/ │ │ ├── SFX/ │ │ └── Mixers/ │ ├── Prefabs/ │ │ ├── Characters/ │ │ ├── Environment/ │ │ ├── UI/ │ │ └── Effects/ │ ├── Scenes/ │ │ ├──…
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
🎮 Production-ready AI rules for Unity 6.2+. Single Source of Truth for Cursor (.cursor) and Google Antigravity (.agent) with auto-sync workflow.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
// ✅ DO: PascalCase public class PlayerController : MonoBehaviour { }.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
DOTS, ECS, Job System, Burst, ISystem, IJobEntity.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Guidelines for working with the New Input System in Unity 6.2.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Cursor rule "unity-networking" from Common-ka/ai-agent-unity-rules, covering netcode for gameobjects and networkbehaviour.
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Cursor rule "unity-performance" from Common-ka/ai-agent-unity-rules, covering unity performance rules, update/fixedupdate/lateupdate, usage rules, object pooling (unityengine.pool) and addressables (not resources).
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Unity Test Framework (Production Standards).
Common-ka/ai-agent-unity-rules
Cursor rule Cursor
Assets/ ├── UI/ │ ├── Runtime/ │ │ ├── Controllers/ │ │ │ └── MainMenuController.cs │ │ ├── Views/ │ │ │ └── MainMenuView.cs │ │ ├── ViewModels/ │ │ │ └── HealthViewModel.cs │ │ ├── UXML/ │ │ │ └── MainMenu.uxml │ │ └── USS/ │ │ └── MainMenu.uss │ └── Editor/ │ └── UIBuilderExtensions.cs.