diff options
author | kobewi <kobewi4e@gmail.com> | 2023-08-04 22:21:09 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-09-12 18:08:02 +0200 |
commit | 015953a3d9089d48f57fd5c7dcdf9a03b416039a (patch) | |
tree | 8af03178dc824740794c24937d8dc6af9b722ac6 /editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h | |
parent | 3ed4497113fa10611b90290ce22a751fb9d26e2e (diff) | |
download | redot-engine-015953a3d9089d48f57fd5c7dcdf9a03b416039a.tar.gz |
Add helper for 3D gizmos and unify box
Diffstat (limited to 'editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h')
-rw-r--r-- | editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h b/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h index 6b7740de2f..464012acf9 100644 --- a/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h +++ b/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h @@ -33,11 +33,12 @@ #include "editor/plugins/node_3d_editor_gizmos.h" +class Gizmo3DHelper; + class CollisionShape3DGizmoPlugin : public EditorNode3DGizmoPlugin { GDCLASS(CollisionShape3DGizmoPlugin, EditorNode3DGizmoPlugin); - Transform3D initial_transform; - Variant initial_value; + Ref<Gizmo3DHelper> helper; public: bool has_gizmo(Node3D *p_spatial) override; @@ -52,6 +53,7 @@ public: void commit_handle(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary, const Variant &p_restore, bool p_cancel = false) override; CollisionShape3DGizmoPlugin(); + ~CollisionShape3DGizmoPlugin(); }; #endif // COLLISION_SHAPE_3D_GIZMO_PLUGIN_H |