1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #105552 from adamwych/expose-get-node-list

Expose `AnimationNode(StateMachine/BlendTree).get_node_list()`
This commit is contained in:
Thaddeus Crews
2025-04-27 19:21:26 -05:00
8 changed files with 50 additions and 16 deletions

View File

@@ -468,7 +468,8 @@ public:
virtual String get_caption() const override;
virtual NodeTimeInfo _process(const AnimationMixer::PlaybackInfo p_playback_info, bool p_test_only = false) override;
void get_node_list(List<StringName> *r_list);
LocalVector<StringName> get_node_list() const;
TypedArray<StringName> get_node_list_as_typed_array() const;
void set_graph_offset(const Vector2 &p_graph_offset);
Vector2 get_graph_offset() const;