mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
29 lines
769 B
C#
29 lines
769 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Framework.Graphics.Containers;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Graphics.Processing
|
|
{
|
|
internal class RatioAdjust : Container
|
|
{
|
|
public RatioAdjust()
|
|
{
|
|
AlwaysReceiveInput = true;
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
Vector2 parent = Parent.DrawSize;
|
|
|
|
Scale = new Vector2(Math.Min(parent.Y / 768f, parent.X / 1024f));
|
|
Size = new Vector2(1 / Scale.X);
|
|
}
|
|
}
|
|
}
|