Browse Source

Fixed PlaybackData in AnimationPlayer

Silc 'Tokage' Renew 3 years ago
parent
commit
0569930280
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/animation/animation_player.h

+ 1 - 1
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;
 	};