summaryrefslogtreecommitdiffstats
path: root/scene/resources/curve.h
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2022-02-12 19:11:08 +0100
committerRaul Santos <raulsntos@gmail.com>2022-05-17 18:08:34 +0200
commit0ba0d51c9e9a62f12d887e62bcc9f0067a80795f (patch)
tree5e96c46c4d46239da4e7f25ec68bb04beb74da76 /scene/resources/curve.h
parent7ea8cde9834b0fda4a928217b7880da3dd330214 (diff)
downloadredot-engine-0ba0d51c9e9a62f12d887e62bcc9f0067a80795f.tar.gz
Implement `mark_dirty` in Curve2D and Curve3D
Implements a method `mark_dirty` in Curve2D and Curve3D like the one that already exists in Curve, it's a convenient way to set `baked_cache_dirty` to `true` and also emit the `changed` signal.
Diffstat (limited to 'scene/resources/curve.h')
-rw-r--r--scene/resources/curve.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/resources/curve.h b/scene/resources/curve.h
index 398f64cabe..ac17a89bf9 100644
--- a/scene/resources/curve.h
+++ b/scene/resources/curve.h
@@ -164,6 +164,8 @@ class Curve2D : public Resource {
mutable Vector<real_t> baked_dist_cache;
mutable real_t baked_max_ofs = 0.0;
+ void mark_dirty();
+
void _bake() const;
real_t bake_interval = 5.0;
@@ -228,6 +230,8 @@ class Curve3D : public Resource {
mutable Vector<real_t> baked_dist_cache;
mutable real_t baked_max_ofs = 0.0;
+ void mark_dirty();
+
void _bake() const;
real_t bake_interval = 0.2;