Package-level declarations

Types

Link copied to clipboard
abstract class ActView(val game: Game) : StageOrActView

Contains a set of StageViews stacked one on top of each other.

Link copied to clipboard
class Letterbox(nominalSize: Vector2, contents: Node? = null) : Node, WithContent
Link copied to clipboard
open class PlayActView(val game: Game) : ActView

There is only ever one PlayActView which is created shortly after the application starts, and is only destroyed when the application ends.

Link copied to clipboard
class PlayStageView(val stage: Stage) : StageView
Link copied to clipboard
abstract class StageOrActView : Node

Common features shared by PlayActView and PlayStageView. Deals with 3 coordinate systems CoordinateSystem.world, CoordinateSystem.pin and CoordinateSystem.window.

Link copied to clipboard
abstract class StageView(val stage: Stage) : StageOrActView

A view of a Stage. A StageView is a child node of ActView.