diff options
author | Daniel Roberts <ademan555@gmail.com> | 2022-11-17 09:42:00 -0600 |
---|---|---|
committer | Yaohua Xiong <xiongyaohua@gmail.com> | 2023-08-12 14:55:38 +0800 |
commit | 46e395abb1e9280cb636192bdf7d0b6ba80911a9 (patch) | |
tree | b306b7088c242d281cfeea9d261a9c3a6c96164e /scene/resources/curve.h | |
parent | 4714e95896c8db02616ea6ec7f9aff92dec1cae4 (diff) | |
download | redot-engine-46e395abb1e9280cb636192bdf7d0b6ba80911a9.tar.gz |
Add handles to control Curve3D tilt
Diffstat (limited to 'scene/resources/curve.h')
-rw-r--r-- | scene/resources/curve.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scene/resources/curve.h b/scene/resources/curve.h index 005d42610b..440e4466f5 100644 --- a/scene/resources/curve.h +++ b/scene/resources/curve.h @@ -258,6 +258,10 @@ class Curve3D : public Resource { }; Vector<Point> points; +#ifdef TOOLS_ENABLED + // For Path3DGizmo. + mutable Vector<size_t> points_in_cache; +#endif mutable bool baked_cache_dirty = false; mutable PackedVector3Array baked_point_cache; @@ -280,6 +284,7 @@ class Curve3D : public Resource { Vector3 _sample_baked(Interval p_interval, bool p_cubic) const; real_t _sample_baked_tilt(Interval p_interval) const; Basis _sample_posture(Interval p_interval, bool p_apply_tilt = false) const; + Basis _compose_posture(int p_index) const; real_t bake_interval = 0.2; bool up_vector_enabled = true; @@ -302,6 +307,11 @@ protected: static void _bind_methods(); public: +#ifdef TOOLS_ENABLED + // For Path3DGizmo. + Basis get_point_baked_posture(int p_index, bool p_apply_tilt = false) const; +#endif + int get_point_count() const; void set_point_count(int p_count); void add_point(const Vector3 &p_position, const Vector3 &p_in = Vector3(), const Vector3 &p_out = Vector3(), int p_atpos = -1); |