diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 10:39:32 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 10:39:32 -0300 |
commit | 92ab362afae275ac26ba24db88395d6d4977515d (patch) | |
tree | 732192f4b96e27bd15180cd549f8959420a99c7d /scene/2d/light_2d.h | |
parent | a93e33f5c8afc8ce2e9c1674718ff103bfae49b0 (diff) | |
download | redot-engine-92ab362afae275ac26ba24db88395d6d4977515d.tar.gz |
avoid function naming conflict on light scale
Diffstat (limited to 'scene/2d/light_2d.h')
-rw-r--r-- | scene/2d/light_2d.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/light_2d.h b/scene/2d/light_2d.h index 95196af5e0..6cfb055fa9 100644 --- a/scene/2d/light_2d.h +++ b/scene/2d/light_2d.h @@ -51,8 +51,8 @@ public: void set_height( float p_height); float get_height() const; - void set_scale( float p_scale); - float get_scale() const; + void set_texture_scale( float p_scale); + float get_texture_scale() const; void set_z_range_min( int p_min_z); int get_z_range_min() const; |