fix default Video playback speed being 0

pull/23/head
cosmonaut 2022-08-18 00:57:22 -07:00
parent 0dddf2a0af
commit 491eafac76
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ namespace MoonWorks.Video
}
}
}
public float PlaybackSpeed { get; set; }
public float PlaybackSpeed { get; set; } = 1;
public double FramesPerSecond => fps;
private VideoState State = VideoState.Stopped;