summaryrefslogtreecommitdiffstats
path: root/scene/resources/curve.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-06-21 16:06:59 +0200
committerRémi Verschelde <rverschelde@gmail.com>2019-06-21 16:08:45 +0200
commitee07560abfb21af62a20da8b2fcbd0265c46a78c (patch)
tree9fd319bd3ac782bc4d9fe8df92dd3f42e9cb5c01 /scene/resources/curve.h
parent34224d5ce55cd22ca8c627f79413f71f957af800 (diff)
downloadredot-engine-ee07560abfb21af62a20da8b2fcbd0265c46a78c.tar.gz
Curve: Prevent forcing 1.0 min value to 0.99
The setters are called when the property is first initialized, and before that its default min and max are 0.0 and 1.0 respectively. If you configured min_value to 1.0 and max_value to e.g. 3.0, since the min_value setter can be called before that of max_value (which thus still defaults to 1.0), the min will be set to 0.99. Same conflict could happen with a configured max_value of 0 if its setter is called before that of a valid, negative min value.
Diffstat (limited to 'scene/resources/curve.h')
-rw-r--r--scene/resources/curve.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/curve.h b/scene/resources/curve.h
index bb12baca48..b677097e86 100644
--- a/scene/resources/curve.h
+++ b/scene/resources/curve.h
@@ -143,6 +143,7 @@ private:
int _bake_resolution;
float _min_value;
float _max_value;
+ int _minmax_set_once; // Encodes whether min and max have been set a first time, first bit for min and second for max.
};
VARIANT_ENUM_CAST(Curve::TangentMode)