assets/
├── models/ // 3D model files (Categorization)
│ ├── characters/ // Character models (Hierarchy)
│ │ ├── player/ // Player character models (Hierarchy)
│ │ └── npc/ // Non-player character models (Hierarchy)
│ ├── environments/ // Environment models
│ │ ├── indoor/ // Indoor environment models
│ │ └── outdoor/ // Outdoor environment models
│ └── props/ // Prop models
├── textures/ // Texture files (Categorization)
│ ├── common/ // Shared textures (Discoverability)
│ └── high_resolution/ // High-res textures for close-up views (Scalability)
├── shaders/ // Shader files
│ ├── core/ // Essential shaders (Discoverability)
│ ├── effects/ // Special effect shaders
│ └── mobile/ // Mobile-optimized shaders (Scalability)
└── config/ // Configuration files
└── quality_presets/ // Different quality settings (Scalability)