Attention: Here be dragons (unstable version)
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Redot.
Checking the stable version of the documentation...
GLTFCamera
Inherits: Resource < RefCounted < Object
Represents a glTF camera.
Description
Represents a camera as defined by the base glTF spec.
Tutorials
Properties
|
||
|
||
|
||
|
||
|
Methods
from_dictionary(dictionary: Dictionary) static |
|
to_dictionary() const |
|
to_node() const |
Property Descriptions
The distance to the far culling boundary for this camera relative to its local Z axis, in meters. This maps to glTF's zfar
property.
The distance to the near culling boundary for this camera relative to its local Z axis, in meters. This maps to glTF's znear
property.
The FOV of the camera. This class and glTF define the camera FOV in radians, while Redot uses degrees. This maps to glTF's yfov
property. This value is only used for perspective cameras, when perspective is true
.
If true
, the camera is in perspective mode. Otherwise, the camera is in orthographic/orthogonal mode. This maps to glTF's camera type
property. See Camera3D.projection and the glTF spec for more information.
The size of the camera. This class and glTF define the camera size magnitude as a radius in meters, while Redot defines it as a diameter in meters. This maps to glTF's ymag
property. This value is only used for orthographic/orthogonal cameras, when perspective is false
.
Method Descriptions
GLTFCamera from_dictionary(dictionary: Dictionary) static 🔗
Creates a new GLTFCamera instance by parsing the given Dictionary.
GLTFCamera from_node(camera_node: Camera3D) static 🔗
Create a new GLTFCamera instance from the given Redot Camera3D node.
Dictionary to_dictionary() const 🔗
Serializes this GLTFCamera instance into a Dictionary.
Converts this GLTFCamera instance into a Redot Camera3D node.