├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | # Autogenerated VS/MD/Consulo solution and project files 12 | ExportedObj/ 13 | .consulo/ 14 | *.csproj 15 | *.unityproj 16 | *.sln 17 | *.suo 18 | *.tmp 19 | *.user 20 | *.userprefs 21 | *.pidb 22 | *.booproj 23 | *.svd 24 | *.pdb 25 | *.opendb 26 | 27 | # Unity3D generated meta files 28 | *.pidb.meta 29 | *.pdb.meta 30 | 31 | # Unity3D Generated File On Crash Reports 32 | sysinfo.txt 33 | 34 | # Builds 35 | *.apk 36 | *.unitypackage 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 苏伟涛 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ET助手 2 | 3 | ## 简介 4 | 5 | - ET框架相关的拓展工具 6 | - 请直接下载Realse的包体,导到Unity中 7 | - [介绍视频](https://www.bilibili.com/video/av74764837) 8 | 9 | ## 版本 10 | 11 | | 版本 | 功能 | 12 | | :--: | :----------------------------------------------------------: | 13 | | 6.02 | [更新ET6.02Beta版插件](https://github.com/swicksu/ET-Assistant/releases/tag/v6.02) | 14 | | 6.1 | [更新ET6.0Beta版插件](https://github.com/swicksu/ET-Assistant/releases/tag/v6.01) | 15 | | 5.11 | [新增ReactiveProperty](https://github.com/swicksu/ET-Assistant/releases/tag/v5.11) | 16 | | 5.10 | [增加生成Unit实体代码的选项,并修改部分API成静态方法](https://github.com/swicksu/ET-Assistant/releases/tag/v5.10) | 17 | | 5.9 | [AEvent的function可空](https://github.com/swicksu/ET-Assistant/releases/tag/v5.9) | 18 | | 5.8 | [AMHandler代码生成](https://github.com/swicksu/ET-Assistant/releases/tag/v5.08) | 19 | | 5.7 | [新增服务器普通、实体、AMRpcHandler脚本生成工具](https://github.com/swicksu/ET-Assistant/releases/tag/v5.07) | 20 | | 5.6 | [AEvent脚本生成](https://github.com/swicksu/ET-Assistant/releases/tag/v5.06) | 21 | | 5.5 | [没有加上GameEnter和UnitMgr](https://github.com/swicksu/ET-Assistant/releases/tag/v5.05) | 22 | | 5.4 | [新增对象池,Model与Hotfix的事件传输](https://github.com/swicksu/ET-Assistant/releases/tag/v5.04) | 23 | | 5.3 | [UI代码生成,事件系统,UI管理,音频管理,可已定义生成路径](https://github.com/swicksu/ET-Assistant/releases/tag/v5.03) | 24 | | 5.2 | [普通代码生成,AssetBundle快速标记](https://github.com/swicksu/ET-Assistant/releases/tag/v5.02) | 25 | | 5.1 | [创建Entity代码](https://github.com/swicksu/ET-Assistant/releases/tag/v5.01) | 26 | --------------------------------------------------------------------------------