diff options
author | Jamie Greunbaum <jamie.greunbaum@battybovine.com> | 2024-04-02 03:26:10 -0400 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-11-26 16:28:13 +0100 |
commit | 0fc082e1ee3af5bb6a4b52f85756d24dc02b230f (patch) | |
tree | 95711351b1bc163dfa65c5529285e1f0136cce27 /editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h | |
parent | d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ce (diff) | |
download | redot-engine-0fc082e1ee3af5bb6a4b52f85756d24dc02b230f.tar.gz |
Add CollisionShape3D custom debug colours
This allows changing the display colour of a CollisionShape3D node on a per-shape basis.
It also adds the ability to display a solid coloured preview of a CollisionShape3D.
Closes https://github.com/godotengine/godot-proposals/issues/906
Diffstat (limited to 'editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h')
-rw-r--r-- | editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h b/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h index 464012acf9..09590fba58 100644 --- a/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h +++ b/editor/plugins/gizmos/collision_shape_3d_gizmo_plugin.h @@ -38,6 +38,8 @@ class Gizmo3DHelper; class CollisionShape3DGizmoPlugin : public EditorNode3DGizmoPlugin { GDCLASS(CollisionShape3DGizmoPlugin, EditorNode3DGizmoPlugin); + void create_collision_material(const String &p_name, float p_alpha); + Ref<Gizmo3DHelper> helper; public: |