mirror of
https://github.com/LazyDuchess/OpenTS2.git
synced 2025-01-22 08:11:47 -05:00
Animations are actually closer to 24 frames per second
This commit is contained in:
parent
380b83ad7f
commit
547a516009
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ namespace OpenTS2.Content.DBPF.Scenegraph
|
|||
}
|
||||
|
||||
// Assuming 30fps for now.
|
||||
private const float TicksToSeconds = (float)(AnimResourceConstBlock.FramesPerTick / 30.0);
|
||||
private const float TicksToSeconds = (float)(AnimResourceConstBlock.FramesPerTick / 24.0);
|
||||
|
||||
private static float ConvertTimeToSeconds(float timeInTicks)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue