From b51a86a57a574e115eba927aff23446f3ca6ba7b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 22 Feb 2018 19:27:35 +0100 Subject: [PATCH] StyleBoxTexture: Texture instead of RES for texture and normal_map. --- doc/classes/StyleBoxTexture.xml | 4 ++-- scene/resources/style_box.cpp | 8 ++++---- scene/resources/style_box.h | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/classes/StyleBoxTexture.xml b/doc/classes/StyleBoxTexture.xml index 62454009431..f789252e1de 100644 --- a/doc/classes/StyleBoxTexture.xml +++ b/doc/classes/StyleBoxTexture.xml @@ -59,11 +59,11 @@ - + - + diff --git a/scene/resources/style_box.cpp b/scene/resources/style_box.cpp index f256e0397d3..626fda50df9 100644 --- a/scene/resources/style_box.cpp +++ b/scene/resources/style_box.cpp @@ -101,7 +101,7 @@ StyleBox::StyleBox() { } } -void StyleBoxTexture::set_texture(RES p_texture) { +void StyleBoxTexture::set_texture(Ref p_texture) { if (texture == p_texture) return; @@ -112,12 +112,12 @@ void StyleBoxTexture::set_texture(RES p_texture) { _change_notify("texture"); } -RES StyleBoxTexture::get_texture() const { +Ref StyleBoxTexture::get_texture() const { return texture; } -void StyleBoxTexture::set_normal_map(RES p_normal_map) { +void StyleBoxTexture::set_normal_map(Ref p_normal_map) { if (normal_map == p_normal_map) return; @@ -125,7 +125,7 @@ void StyleBoxTexture::set_normal_map(RES p_normal_map) { emit_changed(); } -RES StyleBoxTexture::get_normal_map() const { +Ref StyleBoxTexture::get_normal_map() const { return normal_map; } diff --git a/scene/resources/style_box.h b/scene/resources/style_box.h index fb79aa360e4..c1d84fe19f4 100644 --- a/scene/resources/style_box.h +++ b/scene/resources/style_box.h @@ -112,11 +112,11 @@ public: void set_region_rect(const Rect2 &p_region_rect); Rect2 get_region_rect() const; - void set_texture(RES p_texture); - RES get_texture() const; + void set_texture(Ref p_texture); + Ref get_texture() const; - void set_normal_map(RES p_normal_map); - RES get_normal_map() const; + void set_normal_map(Ref p_normal_map); + Ref get_normal_map() const; void set_draw_center(bool p_enabled); bool is_draw_center_enabled() const;