|
@@ -3690,7 +3690,7 @@ void AnimationTrackEditor::_name_limit_changed() {
|
|
}
|
|
}
|
|
|
|
|
|
void AnimationTrackEditor::_timeline_changed(float p_new_pos, bool p_timeline_only) {
|
|
void AnimationTrackEditor::_timeline_changed(float p_new_pos, bool p_timeline_only) {
|
|
- emit_signal(SNAME("timeline_changed"), p_new_pos, p_timeline_only);
|
|
|
|
|
|
+ emit_signal(SNAME("timeline_changed"), p_new_pos, p_timeline_only, false);
|
|
}
|
|
}
|
|
|
|
|
|
void AnimationTrackEditor::_track_remove_request(int p_track) {
|
|
void AnimationTrackEditor::_track_remove_request(int p_track) {
|
|
@@ -3787,6 +3787,7 @@ void AnimationTrackEditor::set_anim_pos(float p_pos) {
|
|
}
|
|
}
|
|
_redraw_groups();
|
|
_redraw_groups();
|
|
bezier_edit->set_play_position(p_pos);
|
|
bezier_edit->set_play_position(p_pos);
|
|
|
|
+ emit_signal(SNAME("timeline_changed"), p_pos, true, true);
|
|
}
|
|
}
|
|
|
|
|
|
static bool track_type_is_resettable(Animation::TrackType p_type) {
|
|
static bool track_type_is_resettable(Animation::TrackType p_type) {
|