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 /scene/resources/3d/world_boundary_shape_3d.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 'scene/resources/3d/world_boundary_shape_3d.h')
-rw-r--r-- | scene/resources/3d/world_boundary_shape_3d.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/resources/3d/world_boundary_shape_3d.h b/scene/resources/3d/world_boundary_shape_3d.h index 06cff6aa9a..456316df2e 100644 --- a/scene/resources/3d/world_boundary_shape_3d.h +++ b/scene/resources/3d/world_boundary_shape_3d.h @@ -33,6 +33,8 @@ #include "scene/resources/3d/shape_3d.h" +class ArrayMesh; + class WorldBoundaryShape3D : public Shape3D { GDCLASS(WorldBoundaryShape3D, Shape3D); Plane plane; @@ -46,6 +48,7 @@ public: const Plane &get_plane() const; virtual Vector<Vector3> get_debug_mesh_lines() const override; + virtual Ref<ArrayMesh> get_debug_arraymesh_faces(const Color &p_modulate) const override; virtual real_t get_enclosing_radius() const override { // Should be infinite? return 0; |