summaryrefslogtreecommitdiff
path: root/scene/2d/polygon_2d.h
diff options
context:
space:
mode:
authorGilles Roudière <gilles.roudiere@gmail.com>2019-10-21 23:37:07 +0200
committerGilles Roudière <gilles.roudiere@gmail.com>2020-01-09 22:15:48 +0100
commitb5251eb00f7daa339ad61923f16608432a902f46 (patch)
treedc8034fc276d71436ef611ff392a56297e64cadc /scene/2d/polygon_2d.h
parent76678b2609921f27f52c1a2e2bd62b8d2a27bb4b (diff)
Don't compile editor-only function when tools=no
Diffstat (limited to 'scene/2d/polygon_2d.h')
-rw-r--r--scene/2d/polygon_2d.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/2d/polygon_2d.h b/scene/2d/polygon_2d.h
index 84ad221760..07b8828532 100644
--- a/scene/2d/polygon_2d.h
+++ b/scene/2d/polygon_2d.h
@@ -77,6 +77,7 @@ protected:
static void _bind_methods();
public:
+#ifdef TOOLS_ENABLED
virtual Dictionary _edit_get_state() const;
virtual void _edit_set_state(const Dictionary &p_state);
@@ -87,6 +88,7 @@ public:
virtual bool _edit_use_rect() const;
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const;
+#endif
void set_polygon(const PoolVector<Vector2> &p_polygon);
PoolVector<Vector2> get_polygon() const;