mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09:00
25 lines
814 B
C#
25 lines
814 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
{
|
|
public class ShakeContainer : Container
|
|
{
|
|
public void Shake()
|
|
{
|
|
const int shake_amount = 8;
|
|
const int shake_duration = 20;
|
|
|
|
this.MoveToX(shake_amount, shake_duration).Then()
|
|
.MoveToX(-shake_amount, shake_duration).Then()
|
|
.MoveToX(shake_amount, shake_duration).Then()
|
|
.MoveToX(-shake_amount, shake_duration).Then()
|
|
.MoveToX(shake_amount, shake_duration).Then()
|
|
.MoveToX(0, shake_duration);
|
|
}
|
|
}
|
|
}
|