diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-06 21:15:13 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-06 21:15:13 -0300 |
commit | e535c942f3c1b7e87a2971101192df5c259cdd30 (patch) | |
tree | ae1066a4cf8ff4e2fdc23a356e5e1894fbe4ebab /scene/gui/patch_9_frame.h | |
parent | 2b9cab25c08f9319fcb9d89262d8eda5618a89ee (diff) | |
parent | c86f1f1737ee58dca9ad6c4ddb3b475fc005453a (diff) |
Merge branch 'master' of https://github.com/godotengine/godot
Diffstat (limited to 'scene/gui/patch_9_frame.h')
-rw-r--r-- | scene/gui/patch_9_frame.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/gui/patch_9_frame.h b/scene/gui/patch_9_frame.h index 562a5b1d77..52e2324c3d 100644 --- a/scene/gui/patch_9_frame.h +++ b/scene/gui/patch_9_frame.h @@ -11,6 +11,7 @@ class Patch9Frame : public Control { bool draw_center; int margin[4]; + Rect2 region_rect; Color modulate; Ref<Texture> texture; protected: @@ -30,6 +31,9 @@ public: void set_patch_margin(Margin p_margin,int p_size); int get_patch_margin(Margin p_margin) const; + void set_region_rect(const Rect2& p_region_rect); + Rect2 get_region_rect() const; + void set_draw_center(bool p_enable); bool get_draw_center() const; |