Skip to content

Camera

Overview

The camera module provides methods to shift the window's viewport of your game's canvas.

API

camera::xyz

Gets the x, y, and z coordinates of the camera.

camera::xyz() -> (f32, f32, f32)

camera::set_xy

camera::set_xy<X: NumCast, Y: NumCast>(x: X, y: Y)
ParamTypeDefaultDescription
xnumberX position of the camera.
ynumberY position of the camera.

camera::move_xy

Moves the camera relative to the current camera position.

camera::set_xy<X: NumCast, Y: NumCast>(x: X, y: Y)
ParamTypeDefaultDescription
xnumberNumber of pixels to move the camera horizontally.
ynumberNumber of pixesl to move the camera vertically.

camera::focus_rect

Use this to center the camera on a target rectangle, based a given position and width and height.

camera::focus_rect<X: NumCast, Y: NumCast, W: NumCast, H: NumCast>(x: X, y: Y, w: W, h: H)
ParamTypeDefaultDescription
xnumberThe x position of the rectangle to focus the camera on.
ynumberThe y position of the rectangle to focus the camera on.
wnumberThe width of the rectangle to focus the camera on.
hnumberThe height of the rectangle to focus the camera on.

camear::set_z

camera::set_z(z: f32)
ParamTypeDefaultDescription
znumberThe camera zoom level.

camera::reset

Resets the camera position to the original center of the canvas.

camera::reset()