Merge pull request #109986 from SomeRanDev/animation_node_state_machine_playback_expansion

Expose `get_fading_...` methods for `AnimationNodeStateMachinePlayback`
This commit is contained in:
Thaddeus Crews 2025-10-28 12:19:20 -05:00
commit 597b0a2f03
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
4 changed files with 34 additions and 6 deletions

View file

@ -1760,8 +1760,8 @@ void AnimationNodeStateMachineEditor::_notification(int p_what) {
fading_from_node = playback->get_fading_from_node();
current_play_pos = playback->get_current_play_pos();
current_length = playback->get_current_length();
fade_from_current_play_pos = playback->get_fade_from_play_pos();
fade_from_length = playback->get_fade_from_length();
fade_from_current_play_pos = playback->get_fading_from_play_pos();
fade_from_length = playback->get_fading_from_length();
fading_time = playback->get_fading_time();
fading_pos = playback->get_fading_pos();
}