diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2017-06-26 23:39:35 +0200 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2017-06-26 23:41:37 +0200 |
commit | 69b8f61f253f950f2b72528ca86a44cff0a77b0d (patch) | |
tree | b7e608a1300cad40bcc21466e440bb1bab2edb67 /scene/resources/curve.h | |
parent | b0516e041230223f8de2ce66c4b6a4ab39021770 (diff) | |
download | redot-engine-69b8f61f253f950f2b72528ca86a44cff0a77b0d.tar.gz |
Curve features
- Ability to set tangents as linear
- Indicative min and max values
- CurveTexture doesn't need min and max anymore
Diffstat (limited to 'scene/resources/curve.h')
-rw-r--r-- | scene/resources/curve.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scene/resources/curve.h b/scene/resources/curve.h index 63b9a07f07..d45f9e202f 100644 --- a/scene/resources/curve.h +++ b/scene/resources/curve.h @@ -89,24 +89,38 @@ public: static const int MIN_X = 0.f; static const int MAX_X = 1.f; + static const char *SIGNAL_RANGE_CHANGED; + #ifdef TOOLS_ENABLED bool _disable_set_data; #endif + enum TangentMode { + TANGENT_FREE = 0, + TANGENT_LINEAR, + TANGENT_MODE_COUNT + }; + struct Point { Vector2 pos; real_t left_tangent; real_t right_tangent; + TangentMode left_mode; + TangentMode right_mode; Point() { left_tangent = 0; right_tangent = 0; + left_mode = TANGENT_FREE; + right_mode = TANGENT_FREE; } Point(Vector2 p, real_t left = 0, real_t right = 0) { pos = p; left_tangent = left; right_tangent = right; + left_mode = TANGENT_FREE; + right_mode = TANGENT_FREE; } }; @@ -124,6 +138,12 @@ public: int set_point_offset(int p_index, float offset); Vector2 get_point_pos(int p_index) const; + float get_min_value() const { return _min_value; } + void set_min_value(float p_min); + + float get_max_value() const { return _max_value; } + void set_max_value(float p_max); + real_t interpolate(real_t offset) const; real_t interpolate_local_nocheck(int index, real_t local_offset) const; @@ -131,8 +151,15 @@ public: void set_point_left_tangent(int i, real_t tangent); void set_point_right_tangent(int i, real_t tangent); + void set_point_left_mode(int i, TangentMode p_mode); + void set_point_right_mode(int i, TangentMode p_mode); + real_t get_point_left_tangent(int i) const; real_t get_point_right_tangent(int i) const; + TangentMode get_point_left_mode(int i) const; + TangentMode get_point_right_mode(int i) const; + + void update_auto_tangents(int i); Array get_data() const; void set_data(Array input); @@ -152,8 +179,12 @@ private: bool _baked_cache_dirty; Vector<real_t> _baked_cache; int _bake_resolution; + float _min_value; + float _max_value; }; +VARIANT_ENUM_CAST(Curve::TangentMode) + class Curve2D : public Resource { GDCLASS(Curve2D, Resource); |