Made it possible to read AnimationPlayer queue from GDscript

This commit is contained in:
DualMatrix
2018-11-28 01:43:34 +01:00
parent f2ae14f309
commit 0cc8a3b9a6
2 changed files with 11 additions and 0 deletions

View File

@ -312,6 +312,7 @@ public:
void play(const StringName &p_name = StringName(), float p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
void play_backwards(const StringName &p_name = StringName(), float p_custom_blend = -1);
void queue(const StringName &p_name);
PoolVector<String> get_queue();
void clear_queue();
void stop(bool p_reset = true);
bool is_playing() const;