summaryrefslogtreecommitdiffstats
path: root/scene/2d/multimesh_instance_2d.cpp
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2024-11-01 18:40:25 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2024-11-02 15:43:18 -0300
commit58e79bfa9a0b0dc6edb04fdf1676ea8027a9f27d (patch)
treedc0acadc6f6e4e0ac6195b0d3b3e149ea33258fb /scene/2d/multimesh_instance_2d.cpp
parentc6c464cf9ae56e8b68620af65125dd980d0e8122 (diff)
downloadredot-engine-58e79bfa9a0b0dc6edb04fdf1676ea8027a9f27d.tar.gz
Compile certain `CanvasItem._edit_*()` functions with `DEBUG_ENABLED`
Diffstat (limited to 'scene/2d/multimesh_instance_2d.cpp')
-rw-r--r--scene/2d/multimesh_instance_2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/multimesh_instance_2d.cpp b/scene/2d/multimesh_instance_2d.cpp
index 417e628517..811dccab4a 100644
--- a/scene/2d/multimesh_instance_2d.cpp
+++ b/scene/2d/multimesh_instance_2d.cpp
@@ -84,7 +84,7 @@ Ref<Texture2D> MultiMeshInstance2D::get_texture() const {
return texture;
}
-#ifdef TOOLS_ENABLED
+#ifdef DEBUG_ENABLED
Rect2 MultiMeshInstance2D::_edit_get_rect() const {
if (multimesh.is_valid()) {
AABB aabb = multimesh->get_aabb();
@@ -93,7 +93,7 @@ Rect2 MultiMeshInstance2D::_edit_get_rect() const {
return Node2D::_edit_get_rect();
}
-#endif
+#endif // DEBUG_ENABLED
MultiMeshInstance2D::MultiMeshInstance2D() {
}