mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Remove null conditional
This commit is contained in:
@ -128,7 +128,7 @@ namespace osu.Game.Storyboards.Drawables
|
|||||||
//
|
//
|
||||||
// In the case of storyboard animations, we want to synchronise with game time perfectly
|
// In the case of storyboard animations, we want to synchronise with game time perfectly
|
||||||
// so let's get a correct time based on gameplay clock and earliest transform.
|
// so let's get a correct time based on gameplay clock and earliest transform.
|
||||||
PlaybackPosition = (beatSyncProvider?.Clock?.CurrentTime ?? Clock.CurrentTime) - Animation.EarliestTransformTime;
|
PlaybackPosition = (beatSyncProvider.Clock?.CurrentTime ?? Clock.CurrentTime) - Animation.EarliestTransformTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void skinSourceChanged()
|
private void skinSourceChanged()
|
||||||
|
Reference in New Issue
Block a user