Skip to content

Folder Structure

JoepEilander edited this page May 7, 2024 · 9 revisions

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

Assets
├── Art
|   ├── Materials
|   ├── 2D
|   |   ├── Sprites
|   |   ├── Textures
|   |   └── UI
|   └── 3D
|       ├── Props
|       ├── Animations
|       |   └── MainCharacter
|       ├── Controllers
|       ├── Models
|       |   └── MainCharacter
|       ├── 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
├── Input
└── Plugins
    └── TextMeshPro

Clone this wiki locally