diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-02-12 19:11:08 +0100 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-05-17 18:08:34 +0200 |
commit | 0ba0d51c9e9a62f12d887e62bcc9f0067a80795f (patch) | |
tree | 5e96c46c4d46239da4e7f25ec68bb04beb74da76 /scene/resources/curve.h | |
parent | 7ea8cde9834b0fda4a928217b7880da3dd330214 (diff) | |
download | redot-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.h | 4 |
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; |