diff options
author | Silc 'Tokage' Renew <tokage.it.lab@gmail.com> | 2021-11-27 07:53:48 +0900 |
---|---|---|
committer | Silc 'Tokage' Renew <tokage.it.lab@gmail.com> | 2021-11-27 07:53:48 +0900 |
commit | 0569930280fb11d7e5582b788500ecdca77e7ff6 (patch) | |
tree | f6c2ea8011fba595402559d88395622249f1906e | |
parent | b43281c8abf2d16d65f75817f0554a9b8ee044aa (diff) |
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; }; |