mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
27 lines
1007 B
C#
27 lines
1007 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
public class TestCaseParallaxContainer : OsuTestCase
|
|
{
|
|
public TestCaseParallaxContainer()
|
|
{
|
|
ParallaxContainer parallax;
|
|
|
|
Add(parallax = new ParallaxContainer
|
|
{
|
|
Child = new BackgroundScreenDefault { Alpha = 0.8f }
|
|
});
|
|
|
|
AddStep("default parallax", () => parallax.ParallaxAmount = ParallaxContainer.DEFAULT_PARALLAX_AMOUNT);
|
|
AddStep("high parallax", () => parallax.ParallaxAmount = ParallaxContainer.DEFAULT_PARALLAX_AMOUNT * 10);
|
|
AddStep("no parallax", () => parallax.ParallaxAmount = 0);
|
|
AddStep("negative parallax", () => parallax.ParallaxAmount = -ParallaxContainer.DEFAULT_PARALLAX_AMOUNT);
|
|
}
|
|
}
|
|
}
|