└── addons └── debug_camera ├── plugin.cfg ├── scenes └── debug_gui.tscn └── scripts ├── DebugCamAutoload.gd ├── DebugCamera2D.gd ├── DebugCamera3D.gd ├── DebugGUI.gd ├── GizmoManger3D.gd ├── edit_data.gd ├── edit_history3D.gd ├── gizmo3D.gd ├── gizmo_helper.gd └── plugin.gd /addons/debug_camera/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/plugin.cfg -------------------------------------------------------------------------------- /addons/debug_camera/scenes/debug_gui.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scenes/debug_gui.tscn -------------------------------------------------------------------------------- /addons/debug_camera/scripts/DebugCamAutoload.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/DebugCamAutoload.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/DebugCamera2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/DebugCamera2D.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/DebugCamera3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/DebugCamera3D.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/DebugGUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/DebugGUI.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/GizmoManger3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/GizmoManger3D.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/edit_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/edit_data.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/edit_history3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/edit_history3D.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/gizmo3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/gizmo3D.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/gizmo_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/gizmo_helper.gd -------------------------------------------------------------------------------- /addons/debug_camera/scripts/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcfresh53/Godot-Debug-Camera/HEAD/addons/debug_camera/scripts/plugin.gd --------------------------------------------------------------------------------