diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-27 01:14:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 01:14:30 +0100 |
commit | e734a7a2d8919bc84ff721f969cb46403d0872d0 (patch) | |
tree | f6c2ea8011fba595402559d88395622249f1906e | |
parent | b43281c8abf2d16d65f75817f0554a9b8ee044aa (diff) | |
parent | 0569930280fb11d7e5582b788500ecdca77e7ff6 (diff) |
Merge pull request #55371 from TokageItLab/fixed-playbackdata-in-animationplayer
Fixed PlaybackData in AnimationPlayer
-rw-r--r-- | scene/animation/animation_player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.h b/scene/animation/animation_player.h index ea04918988..1b07c086c0 100644 --- a/scene/animation/animation_player.h +++ b/scene/animation/animation_player.h @@ -198,7 +198,7 @@ private: struct PlaybackData { AnimationData *from = nullptr; - float pos = 0.0; + double pos = 0.0; float speed_scale = 1.0; }; |