mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 17:37:23 +09:00
Don't wiggle repeat points independently
This commit is contained in:
parent
b17bd6aaaa
commit
d855e5957a
@ -37,6 +37,11 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
var osuObject = (OsuHitObject)drawable.HitObject;
|
var osuObject = (OsuHitObject)drawable.HitObject;
|
||||||
Vector2 origin = drawable.Position;
|
Vector2 origin = drawable.Position;
|
||||||
|
|
||||||
|
// Wiggle the repeat points with the slider instead of independently.
|
||||||
|
// Also fixes an issue with repeat points being positioned incorrectly.
|
||||||
|
if (osuObject is RepeatPoint)
|
||||||
|
return;
|
||||||
|
|
||||||
Random objRand = new Random((int)osuObject.StartTime);
|
Random objRand = new Random((int)osuObject.StartTime);
|
||||||
|
|
||||||
// Wiggle all objects during TimePreempt
|
// Wiggle all objects during TimePreempt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user