Some work on double support

This commit is contained in:
Aaron Franke
2021-08-09 17:15:17 -05:00
parent c68b109f27
commit 430ad75963
42 changed files with 277 additions and 260 deletions

View File

@ -780,7 +780,7 @@ void AnimationPlayer::_animation_process_data(PlaybackData &cd, double p_delta,
double delta = p_delta * speed_scale * cd.speed_scale;
double next_pos = cd.pos + delta;
float len = cd.from->animation->get_length();
real_t len = cd.from->animation->get_length();
bool loop = cd.from->animation->has_loop();
if (!loop) {