|
@@ -80,6 +80,7 @@ void AnimationPlayerEditor::_node_removed(Node *p_node) {
|
|
void AnimationPlayerEditor::_notification(int p_what) {
|
|
void AnimationPlayerEditor::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
case NOTIFICATION_PROCESS: {
|
|
case NOTIFICATION_PROCESS: {
|
|
|
|
+ finishing = false;
|
|
if (!player || is_dummy) {
|
|
if (!player || is_dummy) {
|
|
track_editor->show_inactive_player_warning(false);
|
|
track_editor->show_inactive_player_warning(false);
|
|
} else {
|
|
} else {
|
|
@@ -1210,6 +1211,9 @@ void AnimationPlayerEditor::edit(AnimationMixer *p_node, AnimationPlayer *p_play
|
|
if (player->is_connected(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated))) {
|
|
if (player->is_connected(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated))) {
|
|
player->disconnect(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated));
|
|
player->disconnect(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated));
|
|
}
|
|
}
|
|
|
|
+ if (player->is_connected(SceneStringName(animation_finished), callable_mp(this, &AnimationPlayerEditor::_animation_finished))) {
|
|
|
|
+ player->disconnect(SceneStringName(animation_finished), callable_mp(this, &AnimationPlayerEditor::_animation_finished));
|
|
|
|
+ }
|
|
if (player->is_connected(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed))) {
|
|
if (player->is_connected(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed))) {
|
|
player->disconnect(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed));
|
|
player->disconnect(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed));
|
|
}
|
|
}
|
|
@@ -1237,6 +1241,9 @@ void AnimationPlayerEditor::edit(AnimationMixer *p_node, AnimationPlayer *p_play
|
|
if (!player->is_connected(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated))) {
|
|
if (!player->is_connected(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated))) {
|
|
player->connect(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated), CONNECT_DEFERRED);
|
|
player->connect(SNAME("animation_list_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_libraries_updated), CONNECT_DEFERRED);
|
|
}
|
|
}
|
|
|
|
+ if (!player->is_connected(SceneStringName(animation_finished), callable_mp(this, &AnimationPlayerEditor::_animation_finished))) {
|
|
|
|
+ player->connect(SceneStringName(animation_finished), callable_mp(this, &AnimationPlayerEditor::_animation_finished));
|
|
|
|
+ }
|
|
if (!player->is_connected(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed))) {
|
|
if (!player->is_connected(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed))) {
|
|
player->connect(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed));
|
|
player->connect(SNAME("current_animation_changed"), callable_mp(this, &AnimationPlayerEditor::_current_animation_changed));
|
|
}
|
|
}
|
|
@@ -1428,9 +1435,16 @@ void AnimationPlayerEditor::_list_changed() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+void AnimationPlayerEditor::_animation_finished(const String &p_name) {
|
|
|
|
+ finishing = true;
|
|
|
|
+}
|
|
|
|
+
|
|
void AnimationPlayerEditor::_current_animation_changed(const String &p_name) {
|
|
void AnimationPlayerEditor::_current_animation_changed(const String &p_name) {
|
|
if (is_visible_in_tree()) {
|
|
if (is_visible_in_tree()) {
|
|
- if (p_name.is_empty()) {
|
|
|
|
|
|
+ if (finishing) {
|
|
|
|
+ finishing = false; // Maybe redundant since it will be false in the AnimationPlayerEditor::_process(), but for safety.
|
|
|
|
+ return;
|
|
|
|
+ } else if (p_name.is_empty()) {
|
|
// Means [stop].
|
|
// Means [stop].
|
|
frame->set_value(0);
|
|
frame->set_value(0);
|
|
track_editor->set_anim_pos(0);
|
|
track_editor->set_anim_pos(0);
|