mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
expose the viewport of a camera
This commit is contained in:
parent
0b39928334
commit
b594c271ac
1 changed files with 6 additions and 3 deletions
|
@ -23,7 +23,6 @@ namespace MLEM.Cameras {
|
|||
get => this.scale;
|
||||
set => this.scale = MathHelper.Clamp(value, this.MinScale, this.MaxScale);
|
||||
}
|
||||
private float scale = 1;
|
||||
/// <summary>
|
||||
/// The minimum <see cref="Scale"/> that the camera can have
|
||||
/// </summary>
|
||||
|
@ -79,11 +78,15 @@ namespace MLEM.Cameras {
|
|||
get => this.Position + this.ScaledViewport / 2;
|
||||
set => this.Position = value - this.ScaledViewport / 2;
|
||||
}
|
||||
private Rectangle Viewport => this.graphicsDevice.Viewport.Bounds;
|
||||
private Vector2 ScaledViewport => new Vector2(this.Viewport.Width, this.Viewport.Height) / this.ActualScale;
|
||||
/// <summary>
|
||||
/// The viewport of this camera, based on the game's <see cref="GraphicsDevice.Viewport"/> and this camera's <see cref="ActualScale"/>
|
||||
/// </summary>
|
||||
public Vector2 ScaledViewport => new Vector2(this.Viewport.Width, this.Viewport.Height) / this.ActualScale;
|
||||
|
||||
private Rectangle Viewport => this.graphicsDevice.Viewport.Bounds;
|
||||
private readonly bool roundPosition;
|
||||
private readonly GraphicsDevice graphicsDevice;
|
||||
private float scale = 1;
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new camera.
|
||||
|
|
Loading…
Reference in a new issue