Spatial

    Inherited By: , ARVRController, , AudioStreamPlayer3D, , Camera, , CollisionPolygon, , GridMap, , Listener, , NavigationMeshInstance, , PathFollow, , ProximityGroup, , RemoteTransform, , SpringArm, , VisibilityNotifier,

    Most basic 3D game object, parent of all 3D-related nodes.

    Most basic 3D game object, with a 3D Transform and visibility settings. All other 3D game objects inherit from Spatial. Use as a parent node to move, scale, rotate and show/hide children in a 3D project.

    Affine operations (rotate, scale, translate) happen in parent’s local coordinate system, unless the Spatial object is set as top-level. Affine operations in this coordinate system correspond to direct affine operations on the Spatial‘s transform. The word local below refers to this coordinate system. The coordinate system that is attached to the Spatial object itself is referred to as object-local coordinate system.

    Note: Unless otherwise specified, all methods that have angle parameters must have angles specified as radians. To convert degrees to radians, use .

    Tutorials

    Methods

    voidforce_update_transform ( )
    get_parent_spatial ( ) const
    get_world ( ) const
    void ( Vector3 axis, angle )
    voidglobal_scale ( scale )
    voidglobal_translate ( offset )
    voidhide ( )
    is_local_transform_notification_enabled ( ) const
    is_scale_disabled ( ) const
    is_set_as_toplevel ( ) const
    is_transform_notification_enabled ( ) const
    is_visible_in_tree ( ) const
    void ( Vector3 target, up )
    voidlook_at_from_position ( position, Vector3 target, up )
    voidorthonormalize ( )
    void ( Vector3 axis, angle )
    voidrotate_object_local ( axis, float angle )
    void ( float angle )
    void ( float angle )
    void ( float angle )
    void ( Vector3 scale )
    void ( bool enable )
    void ( bool disable )
    void ( )
    voidset_ignore_transform_notification ( enabled )
    voidset_notify_local_transform ( enable )
    voidset_notify_transform ( enable )
    voidshow ( )
    to_global ( local_point ) const
    Vector3 ( Vector3 global_point ) const
    void ( Vector3 offset )
    void ( Vector3 offset )
    void ( )
    • visibility_changed ( )

    Emitted when node visibility changes.

    Constants

    • NOTIFICATION_TRANSFORM_CHANGED = 2000 —- Spatial nodes receives this notification when their global transform changes. This means that either the current or a parent node changed its transform.

    In order for NOTIFICATION_TRANSFORM_CHANGED to work, users first need to ask for it, with .

    • NOTIFICATION_ENTER_WORLD = 41 —- Spatial nodes receives this notification when they are registered to new World resource.
    • NOTIFICATION_EXIT_WORLD = 42 —- Spatial nodes receives this notification when they are unregistered from current resource.
    • NOTIFICATION_VISIBILITY_CHANGED = 43 —- Spatial nodes receives this notification when their visibility changes.
    Setterset_gizmo(value)
    Getterget_gizmo()

    The for this node. Used for example in EditorSpatialGizmo as custom visualization and editing handles in Editor.


    • global_transform

    World space (global) Transform of this node.


    • rotation
    Setterset_rotation(value)
    Getterget_rotation()

    Rotation part of the local transformation in radians, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle).

    Note: In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a Vector3 data structure not because the rotation is a vector, but only because exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation “vector” is not meaningful.


    DefaultVector3( 0, 0, 0 )
    Setterset_rotation_degrees(value)
    Getterget_rotation_degrees()

    Rotation part of the local transformation in degrees, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle).


    Scale part of the local transformation.


    • transform
    DefaultTransform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )
    Setterset_transform(value)
    Getterget_transform()

    Local space Transform of this node, with respect to the parent node.


    • translation
    DefaultVector3( 0, 0, 0 )
    Setterset_translation(value)
    Getterget_translation()

    Local translation of this node.


    If true, this node is drawn. The node is only visible if all of its antecedents are visible as well (in other words, must return true).

    Method Descriptions

    • void force_update_transform ( )

    • Spatial get_parent_spatial ( ) const

    Returns the parent Spatial, or an empty if no parent exists or parent is not of type Spatial.


    • World get_world ( ) const

    Returns the current resource this Spatial node is registered to.


    • void global_rotate ( Vector3 axis, angle )

    Rotates the global (world) transformation around axis, a unit Vector3, by specified angle in radians. The rotation axis is in global coordinate system.


    • void global_scale ( scale )

    Scales the global (world) transformation by the given Vector3 scale factors.


    • void global_translate ( offset )

    Moves the global (world) transformation by Vector3 offset. The offset is in global coordinate system.


    • void hide ( )

    Disables rendering of this node. Changes to false.


    • bool is_local_transform_notification_enabled ( ) const

    Returns whether node notifies about its local transformation changes. Spatial will not propagate this by default.


    • is_scale_disabled ( ) const

    Returns whether this node uses a scale of (1, 1, 1) or its local transformation scale.


    • bool is_set_as_toplevel ( ) const

    Returns whether this node is set as Toplevel, that is whether it ignores its parent nodes transformations.


    • is_transform_notification_enabled ( ) const

    Returns whether the node notifies about its global and local transformation changes. Spatial will not propagate this by default.


    • bool is_visible_in_tree ( ) const

    Returns true if the node is present in the , its visible property is true and all its antecedents are also visible. If any antecedent is hidden, this node will not be visible in the scene tree.


    • void look_at ( target, Vector3 up )

    Rotates itself so that the local -Z axis points towards the target position.

    The transform will first be rotated around the given vector, and then fully aligned to the target by a further rotation around an axis perpendicular to both the target and up vectors.

    Operations take place in global space.


    • void look_at_from_position ( position, Vector3 target, up )

    Moves the node to the specified position, and then rotates itself to point toward the target as per look_at. Operations take place in global space.


    Resets this node’s transformations (like scale, skew and taper) preserving its rotation and translation by performing Gram-Schmidt orthonormalization on this node’s .


    • void rotate ( Vector3 axis, angle )

    • void rotate_object_local ( Vector3 axis, angle )

    Rotates the local transformation around axis, a unit Vector3, by specified angle in radians. The rotation axis is in object-local coordinate system.


    • void rotate_x ( angle )

    Rotates the local transformation around the X axis by angle in radians.


    • void rotate_y ( float angle )

    Rotates the local transformation around the Y axis by angle in radians.


    • void rotate_z ( angle )

    Rotates the local transformation around the Z axis by angle in radians.


    • void scale_object_local ( Vector3 scale )

    Scales the local transformation by given 3D scale factors in object-local coordinate system.


    • void set_as_toplevel ( enable )

    Makes the node ignore its parents transformations. Node transformations are only in global space.


    • void set_disable_scale ( bool disable )

    Sets whether the node uses a scale of (1, 1, 1) or its local transformation scale. Changes to the local transformation scale are preserved.


    • void set_identity ( )

    Reset all transformations for this node (sets its to the identity matrix).


    • void set_ignore_transform_notification ( bool enabled )

    Sets whether the node ignores notification that its transformation (global or local) changed.


    • void set_notify_local_transform ( enable )

    Sets whether the node notifies about its local transformation changes. Spatial will not propagate this by default.


    • void set_notify_transform ( bool enable )

    Sets whether the node notifies about its global and local transformation changes. Spatial will not propagate this by default.


    • void show ( )

    Enables rendering of this node. Changes to true.


    • Vector3 to_global ( local_point ) const

    Transforms local_point from this node’s local space to world space.


    • Vector3 to_local ( global_point ) const

    Transforms global_point from world space to this node’s local space.


    Changes the node’s position by the given offset .

    Note that the translation offset is affected by the node’s scale, so if scaled by e.g. (10, 1, 1), a translation by an offset of would actually add 20 (2 * 10) to the X coordinate.


    • void translate_object_local ( Vector3 offset )

    • void update_gizmo ( )

    Updates the of this node.