diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-21 16:15:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 16:15:49 +0200 |
commit | fad7034e8b8275ce89424185c6ccee4de6aebd7f (patch) | |
tree | 88274be2766f9519b19bc01864e6f58974cd9585 /scene | |
parent | 9c9ec63e1dbd33cace4a988783f1130b4c3f06ad (diff) | |
parent | 1a347e9cf37480b5b87f331c4c41c6fa60db5132 (diff) |
Merge pull request #54070 from KoBeWi/meh_instance_2d
Diffstat (limited to 'scene')
-rw-r--r-- | scene/2d/mesh_instance_2d.cpp | 4 | ||||
-rw-r--r-- | scene/2d/mesh_instance_2d.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/scene/2d/mesh_instance_2d.cpp b/scene/2d/mesh_instance_2d.cpp index 15008390b7..58bff97da9 100644 --- a/scene/2d/mesh_instance_2d.cpp +++ b/scene/2d/mesh_instance_2d.cpp @@ -96,6 +96,10 @@ Rect2 MeshInstance2D::_edit_get_rect() const { return Node2D::_edit_get_rect(); } + +bool MeshInstance2D::_edit_use_rect() const { + return mesh.is_valid(); +} #endif MeshInstance2D::MeshInstance2D() { diff --git a/scene/2d/mesh_instance_2d.h b/scene/2d/mesh_instance_2d.h index adfda4cf7f..f94d53da7d 100644 --- a/scene/2d/mesh_instance_2d.h +++ b/scene/2d/mesh_instance_2d.h @@ -48,6 +48,7 @@ protected: public: #ifdef TOOLS_ENABLED virtual Rect2 _edit_get_rect() const override; + virtual bool _edit_use_rect() const override; #endif void set_mesh(const Ref<Mesh> &p_mesh); |