├── .gitignore ├── .vs └── unity-editor-gui │ └── v14 │ └── .suo ├── Assets ├── ResourcesEditor.meta ├── ResourcesEditor │ └── Templates.meta ├── Scripts.meta ├── Scripts │ ├── Editor.meta │ └── Editor │ │ ├── GUISkinEditor.cs │ │ ├── GUISkinEditor.cs.meta │ │ ├── MultiWindowEditor.cs │ │ └── MultiWindowEditor.cs.meta ├── Test Assets.meta └── Test Assets │ ├── TestGUISkin.guiskin │ ├── TestGUISkin.guiskin.meta │ ├── button.png │ └── button.png.meta ├── Docs └── Inspector.PNG ├── Images └── example.gif ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/unity-editor-gui/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/.vs/unity-editor-gui/v14/.suo -------------------------------------------------------------------------------- /Assets/ResourcesEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/ResourcesEditor.meta -------------------------------------------------------------------------------- /Assets/ResourcesEditor/Templates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/ResourcesEditor/Templates.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GUISkinEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts/Editor/GUISkinEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GUISkinEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts/Editor/GUISkinEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/MultiWindowEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts/Editor/MultiWindowEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/MultiWindowEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Scripts/Editor/MultiWindowEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Test Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Test Assets.meta -------------------------------------------------------------------------------- /Assets/Test Assets/TestGUISkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Test Assets/TestGUISkin.guiskin -------------------------------------------------------------------------------- /Assets/Test Assets/TestGUISkin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Test Assets/TestGUISkin.guiskin.meta -------------------------------------------------------------------------------- /Assets/Test Assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Test Assets/button.png -------------------------------------------------------------------------------- /Assets/Test Assets/button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Assets/Test Assets/button.png.meta -------------------------------------------------------------------------------- /Docs/Inspector.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Docs/Inspector.PNG -------------------------------------------------------------------------------- /Images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/Images/example.gif -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.2.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoserLock/unity-guiskin-editor/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------