Viewport

open class Viewport(var x: Int = 0, var y: Int = 0, var width: Int = 0, var height: Int = 0, var camera: Camera = OrthographicCamera())

A base viewport where the virtual size is the same as the viewport/screen size.

Author

Colton Daily

Constructors

Link copied to clipboard
fun Viewport(x: Int = 0, y: Int = 0, width: Int = 0, height: Int = 0, 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 fun update(width: Int, height: Int, context: Context, centerCamera: Boolean = false)

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

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

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard