mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 07:27:51 +08:00
68476eafb9
Note, that this was just stupid replacement. Many components will likely want to actually read Size and not DrawSize. We may want to do a pass over this at some point, but for now everything is working like this. (Old behavior.)
30 lines
792 B
C#
30 lines
792 B
C#
//Copyright (c) 2007-2016 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
|
|
{
|
|
class RatioAdjust : Container
|
|
{
|
|
public override bool Contains(Vector2 screenSpacePos) => true;
|
|
|
|
public RatioAdjust()
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
}
|