diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-30 09:59:01 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-30 09:59:01 +0200 |
commit | b310e5e064ab44d594e1aca148e3ca41af3fb15a (patch) | |
tree | 01e7718fed06cae62ab1a57b9ca0cece911ec2d0 /editor/animation_track_editor.h | |
parent | 4c6bac15a3f8597b83c0c6df7d7ce37ac07e20b2 (diff) | |
parent | 351f454a9492fc8cf64b4b83a6895649c587a528 (diff) | |
download | redot-engine-b310e5e064ab44d594e1aca148e3ca41af3fb15a.tar.gz |
Merge pull request #92842 from mihe/multi-node-keying
Allow keying properties when selecting multiple nodes
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r-- | editor/animation_track_editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h index 59ee6535ac..a517ba8b43 100644 --- a/editor/animation_track_editor.h +++ b/editor/animation_track_editor.h @@ -713,8 +713,8 @@ public: void cleanup(); void set_anim_pos(float p_pos); - void insert_node_value_key(Node *p_node, const String &p_property, const Variant &p_value, bool p_only_if_exists = false); - void insert_value_key(const String &p_property, const Variant &p_value, bool p_advance); + void insert_node_value_key(Node *p_node, const String &p_property, bool p_only_if_exists = false, bool p_advance = false); + void insert_value_key(const String &p_property, bool p_advance); void insert_transform_key(Node3D *p_node, const String &p_sub, const Animation::TrackType p_type, const Variant &p_value); bool has_track(Node3D *p_node, const String &p_sub, const Animation::TrackType p_type); void make_insert_queue(); |