1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Fix typos

This commit is contained in:
Dean Herbert 2017-07-10 03:22:08 +09:00
parent 15fe01d5ee
commit 7952e7caa9
4 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ namespace osu.Desktop.VisualTests.Tests
{
base.LoadComplete();
using (container.BeginLoopedSequece())
using (container.BeginLoopedSequence())
{
container.MoveTo(new Vector2(0, 100), duration);
using (container.BeginDelayedSequence(duration))

View File

@ -37,7 +37,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
protected override void LoadComplete()
{
base.LoadComplete();
using (icon.BeginLoopedSequece())
using (icon.BeginLoopedSequence())
icon.RotateTo(360, 1000);
}

View File

@ -34,7 +34,7 @@ namespace osu.Game.Graphics.UserInterface
{
base.LoadComplete();
using (spinner.BeginLoopedSequece())
using (spinner.BeginLoopedSequence())
spinner.RotateTo(360, 2000);
}

View File

@ -213,7 +213,7 @@ namespace osu.Game.Overlays.Notifications
if (pulsate)
{
const float length = 1000;
using (pulsateLayer.BeginLoopedSequece(length / 2))
using (pulsateLayer.BeginLoopedSequence(length / 2))
{
pulsateLayer.FadeTo(0.4f, length, EasingTypes.In);
using (pulsateLayer.BeginDelayedSequence(length))