summaryrefslogtreecommitdiffstats
path: root/scene/resources/curve.h
diff options
context:
space:
mode:
authorVolTer <mew.pur.pur@abv.bg>2023-03-13 23:03:36 +0100
committerVolTer <mew.pur.pur@abv.bg>2023-05-28 14:17:51 +0200
commita3c4a4b039e9c0c5947744bbaf7f9a9bc123982c (patch)
tree72e3387d0eeccce76129380de09c1c6abfead35f /scene/resources/curve.h
parentc80a2b4fe99dcd0bba6fc24ed2748b1474b24448 (diff)
downloadredot-engine-a3c4a4b039e9c0c5947744bbaf7f9a9bc123982c.tar.gz
Overhaul the Curve Editor
Diffstat (limited to 'scene/resources/curve.h')
-rw-r--r--scene/resources/curve.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/scene/resources/curve.h b/scene/resources/curve.h
index 19af200ba7..005d42610b 100644
--- a/scene/resources/curve.h
+++ b/scene/resources/curve.h
@@ -83,6 +83,11 @@ public:
real_t right_tangent = 0,
TangentMode left_mode = TANGENT_FREE,
TangentMode right_mode = TANGENT_FREE);
+ int add_point_no_update(Vector2 p_position,
+ real_t left_tangent = 0,
+ real_t right_tangent = 0,
+ TangentMode left_mode = TANGENT_FREE,
+ TangentMode right_mode = TANGENT_FREE);
void remove_point(int p_index);
void clear_points();
@@ -100,6 +105,8 @@ public:
real_t get_max_value() const { return _max_value; }
void set_max_value(real_t p_max);
+ real_t get_range() const { return _max_value - _min_value; }
+
real_t sample(real_t p_offset) const;
real_t sample_local_nocheck(int p_index, real_t p_local_offset) const;