├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── DebugGUI │ ├── Attributes │ ├── DebugGUIGraphAttribute.cs │ └── DebugGUIPrintAttribute.cs │ ├── DebugGUI.cs │ ├── DebugGUISettingsInitializer.cs │ ├── Examples │ ├── DebugGUIExamples.cs │ ├── DebugGUIExamples.tscn │ └── debugGUI_examples.gd │ ├── Windows │ ├── DebugGUIWindow.cs │ ├── GraphWindow.cs │ └── LogWindow.cs │ └── plugin.cfg └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/README.md -------------------------------------------------------------------------------- /addons/DebugGUI/Attributes/DebugGUIGraphAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Attributes/DebugGUIGraphAttribute.cs -------------------------------------------------------------------------------- /addons/DebugGUI/Attributes/DebugGUIPrintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Attributes/DebugGUIPrintAttribute.cs -------------------------------------------------------------------------------- /addons/DebugGUI/DebugGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/DebugGUI.cs -------------------------------------------------------------------------------- /addons/DebugGUI/DebugGUISettingsInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/DebugGUISettingsInitializer.cs -------------------------------------------------------------------------------- /addons/DebugGUI/Examples/DebugGUIExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Examples/DebugGUIExamples.cs -------------------------------------------------------------------------------- /addons/DebugGUI/Examples/DebugGUIExamples.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Examples/DebugGUIExamples.tscn -------------------------------------------------------------------------------- /addons/DebugGUI/Examples/debugGUI_examples.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Examples/debugGUI_examples.gd -------------------------------------------------------------------------------- /addons/DebugGUI/Windows/DebugGUIWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Windows/DebugGUIWindow.cs -------------------------------------------------------------------------------- /addons/DebugGUI/Windows/GraphWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Windows/GraphWindow.cs -------------------------------------------------------------------------------- /addons/DebugGUI/Windows/LogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/Windows/LogWindow.cs -------------------------------------------------------------------------------- /addons/DebugGUI/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/addons/DebugGUI/plugin.cfg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaverDev/DebugGUIGraph/HEAD/project.godot --------------------------------------------------------------------------------