├── .gitignore ├── Assets ├── GUIWindows.meta └── GUIWindows │ ├── Cursors.meta │ ├── Cursors │ ├── cursor_diag_a.png │ ├── cursor_diag_a.png.meta │ ├── cursor_diag_b.png │ ├── cursor_diag_b.png.meta │ ├── cursor_horizontal.png │ ├── cursor_horizontal.png.meta │ ├── cursor_vertical.png │ └── cursor_vertical.png.meta │ ├── Examples.meta │ ├── Examples │ ├── ExampleScene.unity │ ├── ExampleScene.unity.meta │ ├── Windows.meta │ └── Windows │ │ ├── Console Window.prefab │ │ ├── Console Window.prefab.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ ├── notepad.png │ │ └── notepad.png.meta │ │ ├── MacOS Themed Window.prefab │ │ ├── MacOS Themed Window.prefab.meta │ │ ├── Minimalist Window.prefab │ │ ├── Minimalist Window.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ ├── ConsoleVisualiser.cs │ │ └── ConsoleVisualiser.cs.meta │ │ ├── Touch Window.prefab │ │ ├── Touch Window.prefab.meta │ │ ├── Windows 10 Notepad Theme.prefab │ │ └── Windows 10 Notepad Theme.prefab.meta │ ├── Resources.meta │ ├── Resources │ ├── WindowUIComponent.prefab │ └── WindowUIComponent.prefab.meta │ ├── Scripts.meta │ └── Scripts │ ├── Editor.meta │ ├── Editor │ ├── GUIPointerObjectEditor.cs │ └── GUIPointerObjectEditor.cs.meta │ ├── GUIBorderParent.cs │ ├── GUIBorderParent.cs.meta │ ├── GUIPointerObject.cs │ ├── GUIPointerObject.cs.meta │ ├── GUIWindow.cs │ ├── GUIWindow.cs.meta │ ├── GUIWindowExpander.cs │ ├── GUIWindowExpander.cs.meta │ ├── GUIWindowHandle.cs │ ├── GUIWindowHandle.cs.meta │ ├── GUIWindowMover.cs │ ├── GUIWindowMover.cs.meta │ ├── GUIWindowUtils.cs │ └── GUIWindowUtils.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset ├── README.md └── gif_demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/GUIWindows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_diag_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_diag_a.png -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_diag_a.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_diag_a.png.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_diag_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_diag_b.png -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_diag_b.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_diag_b.png.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_horizontal.png -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_horizontal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_horizontal.png.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_vertical.png -------------------------------------------------------------------------------- /Assets/GUIWindows/Cursors/cursor_vertical.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Cursors/cursor_vertical.png.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/ExampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/ExampleScene.unity -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/ExampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/ExampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Console Window.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Console Window.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Console Window.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Console Window.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Icons.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Icons/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Icons/notepad.png -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Icons/notepad.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Icons/notepad.png.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/MacOS Themed Window.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/MacOS Themed Window.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/MacOS Themed Window.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/MacOS Themed Window.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Minimalist Window.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Minimalist Window.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Minimalist Window.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Minimalist Window.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Scripts.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Scripts/ConsoleVisualiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Scripts/ConsoleVisualiser.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Scripts/ConsoleVisualiser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Scripts/ConsoleVisualiser.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Touch Window.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Touch Window.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Touch Window.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Touch Window.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Windows 10 Notepad Theme.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Windows 10 Notepad Theme.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Examples/Windows/Windows 10 Notepad Theme.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Examples/Windows/Windows 10 Notepad Theme.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Resources.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Resources/WindowUIComponent.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Resources/WindowUIComponent.prefab -------------------------------------------------------------------------------- /Assets/GUIWindows/Resources/WindowUIComponent.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Resources/WindowUIComponent.prefab.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/Editor/GUIPointerObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/Editor/GUIPointerObjectEditor.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/Editor/GUIPointerObjectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/Editor/GUIPointerObjectEditor.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIBorderParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIBorderParent.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIBorderParent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIBorderParent.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIPointerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIPointerObject.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIPointerObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIPointerObject.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindow.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindow.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowExpander.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowExpander.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowExpander.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowHandle.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowHandle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowHandle.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowMover.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowMover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowMover.cs.meta -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowUtils.cs -------------------------------------------------------------------------------- /Assets/GUIWindows/Scripts/GUIWindowUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/Assets/GUIWindows/Scripts/GUIWindowUtils.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/README.md -------------------------------------------------------------------------------- /gif_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rellac-Rellac/unity-gui-windows/HEAD/gif_demo.gif --------------------------------------------------------------------------------