更新文档

This commit is contained in:
feng
2024-12-17 10:03:53 +08:00
parent 4075588c34
commit f3aa8824d8
4 changed files with 49 additions and 39 deletions

View File

@@ -64,20 +64,24 @@ Net Core现在已经更新到了8.0的版本,在性能和设计上其实是远
## <strong>项目结构概览
```
Assets
├── AssetArt // 美术资源目录
│ └── Atlas // 自动生成图集目录
├── AssetRaw // 热更资源目录
├── Atlas // 自动生成图集目录
│ ├── UIRaw // UI图片目录
│ │ ├── Atlas // 需要自动生成图集的UI素材目录
│ │ └── Raw // 不需要自动生成图集的UI素材目录
├── Editor // 编辑器脚本目录
├── HybridCLRData // hybridclr相关目录
├── Scenes // 主场景目录
├── TEngine // 框架核心目录
└── GameScripts // 程序集目录
├── Editor // 编辑器程序集
├── Main // 主程序程序集(启动器与流程)
└── HotFix // 游戏热更程序集目录 [Folder]
├── GameBase // 游戏基础框架程序集 [Dll]
├── GameProto // 游戏配置协议程序集 [Dll]
├── BattleCore // 游戏核心战斗程序集 [Dll]
├── GameProto // 游戏配置协议程序集 [Dll]
└── GameLogic // 游戏业务逻辑程序集 [Dll]
├── GameApp.cs // 热更主入口
└── GameApp_RegisterSystem.cs // 热更主入口注册系统
└── GameApp_RegisterSystem.cs // 热更主入口注册系统
TEngine
@@ -86,7 +90,7 @@ TEngine
```
- 必要:项目使用了以下第三方插件,请自行购买导入:
- /Unity/Assets/Plugins/Sirenix
- /UnityProject/Assets/Plugins/Sirenix
---
## <strong>优质开源项目推荐