summaryrefslogtreecommitdiff
path: root/scene/2d/touch_screen_button.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-01-10 07:18:13 +0100
committerGitHub <noreply@github.com>2020-01-10 07:18:13 +0100
commit9e09704ac5a207af309ad2529390a49f849ee77b (patch)
treedc8034fc276d71436ef611ff392a56297e64cadc /scene/2d/touch_screen_button.h
parent76678b2609921f27f52c1a2e2bd62b8d2a27bb4b (diff)
parentb5251eb00f7daa339ad61923f16608432a902f46 (diff)
Merge pull request #32967 from groud/dont-compile-editor-only
Don't compile editor-only functions when tools=no
Diffstat (limited to 'scene/2d/touch_screen_button.h')
-rw-r--r--scene/2d/touch_screen_button.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/scene/2d/touch_screen_button.h b/scene/2d/touch_screen_button.h
index 9c9fc6125a..28dba59402 100644
--- a/scene/2d/touch_screen_button.h
+++ b/scene/2d/touch_screen_button.h
@@ -74,6 +74,11 @@ protected:
static void _bind_methods();
public:
+#ifdef TOOLS_ENABLED
+ virtual Rect2 _edit_get_rect() const;
+ virtual bool _edit_use_rect() const;
+#endif
+
void set_texture(const Ref<Texture> &p_texture);
Ref<Texture> get_texture() const;
@@ -103,8 +108,6 @@ public:
bool is_pressed() const;
- virtual Rect2 _edit_get_rect() const;
- virtual bool _edit_use_rect() const;
virtual Rect2 get_anchorable_rect() const;
TouchScreenButton();