Skip to content

Latest commit

 

History

History
129 lines (115 loc) · 2.37 KB

File metadata and controls

129 lines (115 loc) · 2.37 KB

Templates

This document outlines the base folder structure templates for 2D/3D Unity projects with one simple and one comprehensive configs for each.

2D Project Structures

2D Folder Config

_Project/
├── Art/
│   ├── Animations/
│   ├── Materials/
│   ├── Shaders/
│   ├── Sprites/
│   ├── Tilesets/
│   └── Fonts/
├── Audio/
│   ├── Music/
│   └── SFX/
├── Prefabs/
│   ├── Characters/
│   ├── Environment/
│   └── UI/
├── Scenes/
│   ├── Gameplay/
│   ├── Menus/
│   └── Test/
├── Scripts/
│   ├── Core/
│   ├── Gameplay/
│   ├── UI/
│   └── Data/
├── Settings/
│   ├── Input/
│   └── Rendering/
├── Tests/
└── Documentation/
Plugins/
StreamingAssets/
Editor/
Resources/
ThirdParty/

Simple 2D Folder Config

_Project/
├── Art/
│   ├── Animations/
│   ├── Sprites/
├── Audio/
│   ├── Music/
│   └── SFX/
├── Prefabs/
├── Scenes/
├── Scripts/
└── Settings/
ThirdParty/

3D Project Structures

3D Folder Config

_Project/
├── Art/
│   ├── Animations/
│   ├── Materials/
│   ├── Shaders/
│   ├── Models/
│   ├── Textures/
│   ├── Lighting/
│   ├── VFX/
│   └── Fonts/
├── Audio/
│   ├── Music/
│   └── SFX/
├── Prefabs/
│   ├── Characters/
│   ├── Environment/
│   └── UI/
├── Scenes/
│   ├── Gameplay/
│   ├── Menus/
│   └── Test/
├── Scripts/
│   ├── Core/
│   ├── Gameplay/
│   ├── UI/
│   └── Data/
├── Settings/
│   ├── Input/
│   └── Rendering/
├── Tests/
└── Documentation/
Plugins/
StreamingAssets/
Editor/
Resources/
ThirdParty/

Simple 3D Folder Config

_Project/
├── Art/
│   ├── Animations/
│   ├── Models/
│   ├── Materials/
│   ├── Textures/
├── Audio/
│   ├── Music/
│   └── SFX/
├── Prefabs/
├── Scenes/
├── Scripts/
└── Settings/
ThirdParty/

For more details about the project, see the main README.md.