Static variables

@:value(new Property<Float>("aspect_ratio"))staticread onlyaspect_ratio:Property<Float> = new Property<Float>("aspect_ratio")

  • The ratio between the frustum width and height. Used when calculating the projection of a perspective camera.

@:value(new Property<Float>("far_z"))staticread onlyfar_z:Property<Float> = new Property<Float>("far_z")

  • Camera frustum far plane.

@:value(new Property<Float>("fov"))staticread onlyfov:Property<Float> = new Property<Float>("fov")

  • Vertical field of view of the camera.

@:value(new Property<Float>("near_z"))staticread onlynear_z:Property<Float> = new Property<Float>("near_z")

  • Camera frustum near plane.

@:value(new Property<Float>("orthographic_zoom"))staticread onlyorthographic_zoom:Property<Float> = new Property<Float>("orthographic_zoom")

  • Zoom level when using an orthographic projection.

@:value(new Property<Matrix4>("projection"))staticread onlyprojection:Property<Matrix4> = new Property<Matrix4>("projection")

  • The calculated projection matrix of the camera. (READ ONLY)

@:value(new Property<Matrix4>("view"))staticread onlyview:Property<Matrix4> = new Property<Matrix4>("view")

  • The calculated view matrix of the camera. (READ ONLY)