├── .cz-config.js ├── .gitignore ├── Assets ├── Editor.meta ├── Editor │ ├── CliWrap.meta │ ├── CliWrap │ │ ├── CliWrap.dll │ │ ├── CliWrap.dll.meta │ │ ├── CliWrap.xml │ │ ├── CliWrap.xml.meta │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll.meta │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ └── Microsoft.Bcl.AsyncInterfaces.xml.meta │ ├── Defines.meta │ ├── Defines │ │ ├── CodeTarget.cs │ │ ├── CodeTarget.cs.meta │ │ ├── CustomDropdown.cs │ │ ├── CustomDropdown.cs.meta │ │ ├── CustomXargs.cs │ │ ├── CustomXargs.cs.meta │ │ ├── DataTarget.cs │ │ ├── DataTarget.cs.meta │ │ ├── LubanConfig.cs │ │ ├── LubanConfig.cs.meta │ │ ├── UnitySerializedDictionary.cs │ │ └── UnitySerializedDictionary.cs.meta │ ├── GenUtils.cs │ ├── GenUtils.cs.meta │ ├── Luban.Editor.asmdef │ ├── Luban.Editor.asmdef.meta │ ├── LubanExportConfig.cs │ ├── LubanExportConfig.cs.meta │ ├── LubanExportConfig_Args.cs │ ├── LubanExportConfig_Args.cs.meta │ ├── LubanExportConfig_GenCommand.cs │ ├── LubanExportConfig_GenCommand.cs.meta │ ├── LubanExportConfig_Register.cs │ └── LubanExportConfig_Register.cs.meta ├── package.json └── package.json.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── Pics ├── GUI_Display.png └── GUI_Display_2.png ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md ├── UserSettings ├── EditorUserSettings.asset └── Search.settings └── package.json /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/CliWrap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap.meta -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/CliWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/CliWrap.dll -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/CliWrap.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/CliWrap.dll.meta -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/CliWrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/CliWrap.xml -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/CliWrap.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/CliWrap.xml.meta -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.dll.meta -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.xml -------------------------------------------------------------------------------- /Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/CliWrap/Microsoft.Bcl.AsyncInterfaces.xml.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/CodeTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CodeTarget.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/CodeTarget.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CodeTarget.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/CustomDropdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CustomDropdown.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/CustomDropdown.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CustomDropdown.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/CustomXargs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CustomXargs.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/CustomXargs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/CustomXargs.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/DataTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/DataTarget.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/DataTarget.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/DataTarget.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/LubanConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/LubanConfig.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/LubanConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/LubanConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Defines/UnitySerializedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/UnitySerializedDictionary.cs -------------------------------------------------------------------------------- /Assets/Editor/Defines/UnitySerializedDictionary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Defines/UnitySerializedDictionary.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/GenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/GenUtils.cs -------------------------------------------------------------------------------- /Assets/Editor/GenUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/GenUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/Luban.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Luban.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Editor/Luban.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/Luban.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig.cs -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_Args.cs -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_Args.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_Args.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_GenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_GenCommand.cs -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_GenCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_GenCommand.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_Register.cs -------------------------------------------------------------------------------- /Assets/Editor/LubanExportConfig_Register.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/Editor/LubanExportConfig_Register.cs.meta -------------------------------------------------------------------------------- /Assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/package.json -------------------------------------------------------------------------------- /Assets/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Assets/package.json.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /Pics/GUI_Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Pics/GUI_Display.png -------------------------------------------------------------------------------- /Pics/GUI_Display_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/Pics/GUI_Display_2.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuOcean/Luban_Unity_GUI/HEAD/package.json --------------------------------------------------------------------------------