summaryrefslogtreecommitdiffstats
path: root/scene/resources/animation.h
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2024-08-10 18:53:45 +0200
committerRaul Santos <raulsntos@gmail.com>2024-08-10 18:53:45 +0200
commit415331f474689e0613869451764c30ea69595c02 (patch)
tree0c34051b5cecefee1ac0cef93767d87090a1aef6 /scene/resources/animation.h
parent4bef4d9808848c38c3f285edb300b4f3a843e543 (diff)
downloadredot-engine-415331f474689e0613869451764c30ea69595c02.tar.gz
Make `Animation::capture_included` read-only
The `PROPERTY_USAGE_READ_ONLY` flag only makes the property read-only in the inspector, but the property also has the `PROPERTY_USAGE_NO_EDITOR` flag which means it won't show up in the inspector. So it does nothing, while still making it editable from scripting. To make it read-only for scripting too, this PR removes the setter from the `PropertyInfo`. And since the `set_capture_included` method is now unused, it was also removed.
Diffstat (limited to 'scene/resources/animation.h')
-rw-r--r--scene/resources/animation.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/resources/animation.h b/scene/resources/animation.h
index d5daaac58a..9e6d34959a 100644
--- a/scene/resources/animation.h
+++ b/scene/resources/animation.h
@@ -396,7 +396,6 @@ public:
int add_track(TrackType p_type, int p_at_pos = -1);
void remove_track(int p_track);
- void set_capture_included(bool p_capture_included);
bool is_capture_included() const;
int get_track_count() const;