FitViewport

open class FitViewport(virtualWidth: Int, virtualHeight: Int, var camera: Camera = OrthographicCamera()) : ScalingViewport

A viewport that supports using a virtual size. The virtual viewport will maintain its aspect ratio while attempting to fit as much as possible onto the screen. Black bars may appear.

Constructors

Link copied to clipboard
fun FitViewport(virtualWidth: Int, virtualHeight: Int, camera: Camera = OrthographicCamera())

Functions

Link copied to clipboard
fun apply(context: Context, centerCamera: Boolean = false)

Sets the OpenGL viewport based on viewport and virtual sizes by calling GL.viewport.

Link copied to clipboard
Link copied to clipboard
fun set(x: Int, y: Int, width: Int, height: Int)

Set the viewport position and size.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun update(width: Int, height: Int, context: Context, centerCamera: Boolean)

Resize the viewport based new size. If using the base Viewport this function must be overridden for it to do anything other than apply the current viewport size.

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var height: Int = 0

The height of the viewport.

Link copied to clipboard
Link copied to clipboard

The virtual/world height.

Link copied to clipboard

The virtual/world width.

Link copied to clipboard
var width: Int = 0

The width of the viewport.

Link copied to clipboard
var x: Int = 0
Link copied to clipboard
var y: Int = 0