└── addons └── runtime_debug_tools ├── LICENSE ├── README.md ├── examples ├── example_mixed_2d_3d.tscn └── example_spin.gd ├── icon.png ├── icon.png.import ├── plugin.cfg ├── scenes └── remote_inspector.tscn └── scripts ├── debug_runtime_interaction_2d.gd ├── debug_runtime_interaction_3d.gd ├── debugger_runtime.gd ├── editor_debugger_plugin.gd ├── editor_menu.gd └── plugin.gd /addons/runtime_debug_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/LICENSE -------------------------------------------------------------------------------- /addons/runtime_debug_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/README.md -------------------------------------------------------------------------------- /addons/runtime_debug_tools/examples/example_mixed_2d_3d.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/examples/example_mixed_2d_3d.tscn -------------------------------------------------------------------------------- /addons/runtime_debug_tools/examples/example_spin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/examples/example_spin.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/icon.png -------------------------------------------------------------------------------- /addons/runtime_debug_tools/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/icon.png.import -------------------------------------------------------------------------------- /addons/runtime_debug_tools/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/plugin.cfg -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scenes/remote_inspector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scenes/remote_inspector.tscn -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/debug_runtime_interaction_2d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/debug_runtime_interaction_2d.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/debug_runtime_interaction_3d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/debug_runtime_interaction_3d.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/debugger_runtime.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/debugger_runtime.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/editor_debugger_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/editor_debugger_plugin.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/editor_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/editor_menu.gd -------------------------------------------------------------------------------- /addons/runtime_debug_tools/scripts/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbscarter/GodotRuntimeDebugTools/HEAD/addons/runtime_debug_tools/scripts/plugin.gd --------------------------------------------------------------------------------