1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Temp default smoke scale/rotation anims

This commit is contained in:
Alden Wu 2022-09-18 22:14:54 -07:00
parent 8474335aea
commit 3eb28881e4

View File

@ -58,15 +58,9 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
return color;
}
protected override float PointScale(SmokePoint point)
{
throw new NotImplementedException();
}
protected override float PointScale(SmokePoint point) => 1f;
protected override Vector2 PointDirection(SmokePoint point)
{
throw new NotImplementedException();
}
protected override Vector2 PointDirection(SmokePoint point) => point.Direction;
}
}
}