├── .gitattributes ├── .gitignore ├── README.md ├── Untitled.png ├── Untitled.png.import ├── addons └── GodotRuntimeInspector │ ├── RuntimeInspector.tscn │ ├── Scripts │ ├── Config.cs │ ├── Config.cs.uid │ ├── Flags.cs │ ├── Flags.cs.uid │ ├── GodotRuntimeInspector.cs │ ├── GodotRuntimeInspector.cs.uid │ ├── MyInputMap.cs │ ├── MyInputMap.cs.uid │ ├── MyProperty.cs │ ├── MyProperty.cs.uid │ ├── MyPropertyTable.cs │ ├── MyPropertyTable.cs.uid │ ├── MyTypes.cs │ ├── MyTypes.cs.uid │ ├── PlaceholderPlugin.cs │ ├── PlaceholderPlugin.cs.uid │ ├── Tags.cs │ ├── Tags.cs.uid │ ├── Utility.cs │ └── Utility.cs.uid │ └── plugin.cfg ├── export_presets.cfg └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/Untitled.png -------------------------------------------------------------------------------- /Untitled.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/Untitled.png.import -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/RuntimeInspector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/RuntimeInspector.tscn -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/Config.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Config.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c7ow2q8gun6qh 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/Flags.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Flags.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b786sbqu2ag3x 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/GodotRuntimeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/GodotRuntimeInspector.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/GodotRuntimeInspector.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bxbhuwen2c7l 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyInputMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/MyInputMap.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyInputMap.cs.uid: -------------------------------------------------------------------------------- 1 | uid://baks7j55amn6s 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/MyProperty.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyProperty.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bfl04n2vaqoa2 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyPropertyTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/MyPropertyTable.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyPropertyTable.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dfaswy8auji4k 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/MyTypes.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/MyTypes.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c2shakyuja6ws 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/PlaceholderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/PlaceholderPlugin.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/PlaceholderPlugin.cs.uid: -------------------------------------------------------------------------------- 1 | uid://blypt3r64fytr 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/Tags.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Tags.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ew5gvd88ca2y 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/Scripts/Utility.cs -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/Scripts/Utility.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bt1iibo0yy32p 2 | -------------------------------------------------------------------------------- /addons/GodotRuntimeInspector/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/addons/GodotRuntimeInspector/plugin.cfg -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beoite/GodotRuntimeInspector/HEAD/project.godot --------------------------------------------------------------------------------