Skip to content

Folder Structure

TryFox edited this page Apr 9, 2024 · 9 revisions

Always use PascalCase and never use whitespaces for files and folders.

Assets
├── Art
|   ├── 2D
|   |   ├── Sprites
|   |   └── UI
|   └── 3D
|       ├── Props
|       ├── Environment
|       ├── Vehicles
|       └── Creatures
├── Scenes
|   └── Develop.unity
├── Materials
├── Prefabs
|   ├── Props (Repeating objects to fill a level)
|   └── Systems
|       └── LaneSystem
├── Scripts
|   ├── Editor
|   └── Framework
|       ├── UI
|       ├── Utils
|       |   └── Libraries
|       └── Gameplay
|           ├── LaneSystem
|           ├── MapData
|           └── Values
├── Sound
|   └── Songs
├── Animations
├── Fonts
├── Editor
|   └── ScriptableObjects
|       └── LevelData
└── Plugins
    └── TextMeshPro
Clone this wiki locally