TNT 是基于 Cocos Creator 3.x 的游戏框架。
使用本框架可以不再深度依赖编辑器,不需要在编辑器中挂载脚本到节点(多语言还是需要的),在运行时会自动挂载脚本到节点。
这样做的优势在于可控性高,团队协作方便。
框架所有管理者单例和大部分类都挂载到了全局变量 tnt
上。
游戏启动需要有一个启动类和启动场景,将启动类挂载到启动场景中,在后续使用过程中,基本不再需要手动在节点挂载组件了。
通过 Cocos Store 下载 TNT 插件安装
通过 仓库 Release 直接下载解压
框架启动需要实现 IStartupOptions
详细的使用可以启动实例 Launcher.scene
查看,脚本同名。
// 框架初始化
tnt.startup(startupOptions);
本框架作为单独的 Bundle 使用,Bundle 名为
framework
Releases
中发布的tnt.zip
已内置preload-tnt.js
脚本,作用是在引擎加载阶段加载framework
Bundle
为保证在编辑器内优先加载框架代码,这里名为framework
的 Bundle 使用了a-framework
作为文件夹名,开发过程中其他 Bundle 尽量保证在框架 Bundle 后加载
从本仓库获取到的插件请在插件目录
./extensions/{插件}
下执行npm install
进行安装所需要的包
https://onvia.gitlab.io/ccc-demo/tnt-example/
Preview 插件 由 @卡西法 提供
psd2ui 插件 Mac 版 由 @bophie 提供部分支持
- 858173205
https://forum.cocos.org/t/topic/78821
https://github.com/wsssheep/cocos_creator_mvvm_tools
https://github.com/vuejs/core.git
https://github.com/sl1673495/typescript-proxy-reactive.git
https://github.com/AILHC/EasyGameFrameworkOpen
https://blog.csdn.net/xzben/article/details/120039818
https://github.com/1226085293/nodes/blob/master/assets/essential/engine/node/nodes.js
https://github.com/fairygui/FairyGUI-cocoscreator/blob/master/source/src/fairygui/GObject.ts
https://github.com/fairygui/FairyGUI-cocoscreator/blob/master/source/src/fairygui/DragDropManager.ts
https://github.com/mapeditor/tiled