Documentation
¶
Overview ¶
The graphics.gd/classdb/Node3D node is the base representation of a node in 3D space. All other 3D nodes inherit from this class.
Affine operations (translation, rotation, scale) are calculated in the coordinate system relative to the parent, unless the graphics.gd/classdb/Node3D's Instance.TopLevel is true. In this coordinate system, affine operations correspond to direct affine operations on the graphics.gd/classdb/Node3D's Instance.Transform. The term parent space refers to this coordinate system. The coordinate system that is attached to the graphics.gd/classdb/Node3D itself is referred to as object-local coordinate system, or local space.
Note: Unless otherwise specified, all methods that need angle parameters must receive angles in radians. To convert degrees to radians, use [graphics.gd/classdb/@GlobalScope.Instance.DegToRad].
Note: In Godot 3 and older, graphics.gd/classdb/Node3D was named Spatial.
Index ¶
- Constants
- type Advanced
- type Any
- type Expanded
- type Extension
- type ID
- type Instance
- func (self Instance) AddGizmo(gizmo Node3DGizmo.Instance)
- func (self Instance) AsNode() Node.Instance
- func (self Instance) AsNode3D() Instance
- func (self Instance) AsObject() [1]gd.Object
- func (self Instance) Basis() Basis.XYZ
- func (self Instance) ClearGizmos()
- func (self Instance) ClearSubgizmoSelection()
- func (self Instance) ForceUpdateTransform()
- func (self Instance) GetGizmos() []Node3DGizmo.Instance
- func (self Instance) GetGlobalTransformInterpolated() Transform3D.BasisOrigin
- func (self Instance) GetParentNode3d() Instance
- func (self Instance) GetWorld3d() World3D.Instance
- func (self Instance) GlobalBasis() Basis.XYZ
- func (self Instance) GlobalPosition() Vector3.XYZ
- func (self Instance) GlobalRotate(axis Vector3.XYZ, angle Angle.Radians)
- func (self Instance) GlobalRotation() Euler.Radians
- func (self Instance) GlobalRotationDegrees() Euler.Degrees
- func (self Instance) GlobalScale(scale Vector3.XYZ)
- func (self Instance) GlobalTransform() Transform3D.BasisOrigin
- func (self Instance) GlobalTranslate(offset Vector3.XYZ)
- func (self Instance) Hide()
- func (self Instance) ID() ID
- func (self Instance) IsLocalTransformNotificationEnabled() bool
- func (self Instance) IsScaleDisabled() bool
- func (self Instance) IsTransformNotificationEnabled() bool
- func (self Instance) IsVisibleInTree() bool
- func (self Instance) LookAt(target Vector3.XYZ)
- func (self Instance) LookAtFromPosition(position Vector3.XYZ, target Vector3.XYZ)
- func (self Instance) OnVisibilityChanged(cb func(), flags ...Signal.Flags)
- func (self Instance) Orthonormalize()
- func (self Instance) Position() Vector3.XYZ
- func (self Instance) Quaternion() Quaternion.IJKX
- func (self Instance) Rotate(axis Vector3.XYZ, angle Angle.Radians)
- func (self Instance) RotateObjectLocal(axis Vector3.XYZ, angle Angle.Radians)
- func (self Instance) RotateX(angle Angle.Radians)
- func (self Instance) RotateY(angle Angle.Radians)
- func (self Instance) RotateZ(angle Angle.Radians)
- func (self Instance) Rotation() Euler.Radians
- func (self Instance) RotationDegrees() Euler.Degrees
- func (self Instance) RotationEditMode() RotationEditMode
- func (self Instance) RotationOrder() Angle.Order
- func (self Instance) Scale() Vector3.XYZ
- func (self Instance) ScaleObjectLocal(scale Vector3.XYZ)
- func (self Instance) SetBasis(value Basis.XYZ)
- func (self Instance) SetDisableScale(disable bool)
- func (self Instance) SetGlobalBasis(value Basis.XYZ)
- func (self Instance) SetGlobalPosition(value Vector3.XYZ)
- func (self Instance) SetGlobalRotation(value Euler.Radians)
- func (self Instance) SetGlobalRotationDegrees(value Euler.Degrees)
- func (self Instance) SetGlobalTransform(value Transform3D.BasisOrigin)
- func (self Instance) SetIdentity()
- func (self Instance) SetIgnoreTransformNotification(enabled bool)
- func (self Instance) SetNotifyLocalTransform(enable bool)
- func (self Instance) SetNotifyTransform(enable bool)
- func (self *Instance) SetObject(obj [1]gd.Object) bool
- func (self Instance) SetPosition(value Vector3.XYZ)
- func (self Instance) SetQuaternion(value Quaternion.IJKX)
- func (self Instance) SetRotation(value Euler.Radians)
- func (self Instance) SetRotationDegrees(value Euler.Degrees)
- func (self Instance) SetRotationEditMode(value RotationEditMode)
- func (self Instance) SetRotationOrder(value Angle.Order)
- func (self Instance) SetScale(value Vector3.XYZ)
- func (self Instance) SetSubgizmoSelection(gizmo Node3DGizmo.Instance, id int, transform Transform3D.BasisOrigin)
- func (self Instance) SetTopLevel(value bool)
- func (self Instance) SetTransform(value Transform3D.BasisOrigin)
- func (self Instance) SetVisibilityParent(value string)
- func (self Instance) SetVisible(value bool)
- func (self Instance) Show()
- func (self Instance) ToGlobal(local_point Vector3.XYZ) Vector3.XYZ
- func (self Instance) ToLocal(global_point Vector3.XYZ) Vector3.XYZ
- func (self Instance) TopLevel() bool
- func (self Instance) Transform() Transform3D.BasisOrigin
- func (self Instance) Translate(offset Vector3.XYZ)
- func (self Instance) TranslateObjectLocal(offset Vector3.XYZ)
- func (self Instance) UpdateGizmos()
- func (self Instance) Virtual(name string) reflect.Value
- func (self Instance) VisibilityParent() string
- func (self Instance) Visible() bool
- type RotationEditMode
Constants ¶
const NotificationEnterWorld Object.Notification = 41 //gd:Node3D.NOTIFICATION_ENTER_WORLD
const NotificationExitWorld Object.Notification = 42 //gd:Node3D.NOTIFICATION_EXIT_WORLD
const NotificationLocalTransformChanged Object.Notification = 44 //gd:Node3D.NOTIFICATION_LOCAL_TRANSFORM_CHANGED
const NotificationTransformChanged Object.Notification = 2000 //gd:Node3D.NOTIFICATION_TRANSFORM_CHANGED
const NotificationVisibilityChanged Object.Notification = 43 //gd:Node3D.NOTIFICATION_VISIBILITY_CHANGED
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Advanced ¶
type Advanced = class
Advanced exposes a 1:1 low-level instance of the class, undocumented, for those who know what they are doing.
type Expanded ¶
func (Expanded) LookAt ¶
Rotates the node so that the local forward axis (-Z, [Vector3.Forward]) points toward the 'target' position. This operation is calculated in global space (relative to the world).
The local up axis (+Y) points as close to the 'up' vector as possible while staying perpendicular to the local forward axis. The resulting transform is orthogonal, and the scale is preserved. Non-uniform scaling may not work correctly.
The 'target' position cannot be the same as the node's position, the 'up' vector cannot be [Vector3.Zero]. Furthermore, the direction from the node's position to the 'target' position cannot be parallel to the 'up' vector, to avoid an unintended rotation around the local Z axis.
If 'use_model_front' is true, the +Z axis (asset front) is treated as forward (implies +X is left) and points toward the 'target' position. By default, the -Z axis (camera forward) is treated as forward (implies +X is right).
Note: This method fails if the node is not in the scene tree. If necessary, use Instance.LookAtFromPosition instead.
func (Expanded) LookAtFromPosition ¶
func (self Expanded) LookAtFromPosition(position Vector3.XYZ, target Vector3.XYZ, up Vector3.XYZ, use_model_front bool)
Moves the node to the specified 'position', then rotates the node to point toward the 'target' position, similar to Instance.LookAt. This operation is calculated in global space (relative to the world).
type Extension ¶
Extension can be embedded in a new struct to create an extension of this class. T should be the type that is embedding this Extension
type ID ¶
ID is a typed object ID (reference) to an instance of this class, use it to store references to objects with unknown lifetimes, as an ID will not panic on use if the underlying object has been destroyed.
type Instance ¶
Instance of the class with convieniently typed arguments and results.
var Nil Instance
Nil is a nil/null instance of the class. Equivalent to the zero value.
func (Instance) AddGizmo ¶
func (self Instance) AddGizmo(gizmo Node3DGizmo.Instance)
Attaches the given 'gizmo' to this node. Only works in the editor.
Note: 'gizmo' should be an graphics.gd/classdb/EditorNode3DGizmo. The argument type is graphics.gd/classdb/Node3DGizmo to avoid depending on editor classes in graphics.gd/classdb/Node3D.
func (Instance) ClearGizmos ¶
func (self Instance) ClearGizmos()
Clears all graphics.gd/classdb/EditorNode3DGizmo objects attached to this node. Only works in the editor.
func (Instance) ClearSubgizmoSelection ¶
func (self Instance) ClearSubgizmoSelection()
Deselects all subgizmos for this node. Useful to call when the selected subgizmo may no longer exist after a property change. Only works in the editor.
func (Instance) ForceUpdateTransform ¶
func (self Instance) ForceUpdateTransform()
Forces the node's Instance.GlobalTransform to update, by sending NotificationTransformChanged. Fails if the node is not inside the tree.
Note: For performance reasons, transform changes are usually accumulated and applied once at the end of the frame. The update propagates through graphics.gd/classdb/Node3D children, as well. Therefore, use this method only when you need an up-to-date transform (such as during physics operations).
func (Instance) GetGizmos ¶
func (self Instance) GetGizmos() []Node3DGizmo.Instance
Returns all the graphics.gd/classdb/EditorNode3DGizmo objects attached to this node. Only works in the editor.
func (Instance) GetGlobalTransformInterpolated ¶
func (self Instance) GetGlobalTransformInterpolated() Transform3D.BasisOrigin
When using physics interpolation, there will be circumstances in which you want to know the interpolated (displayed) transform of a node rather than the standard transform (which may only be accurate to the most recent physics tick).
This is particularly important for frame-based operations that take place in graphics.gd/classdb/Node.Instance.Process, rather than graphics.gd/classdb/Node.Instance.PhysicsProcess. Examples include [graphics.gd/classdb/Camera3D]s focusing on a node, or finding where to fire lasers from on a frame rather than physics tick.
Note: This function creates an interpolation pump on the graphics.gd/classdb/Node3D the first time it is called, which can respond to physics interpolation resets. If you get problems with "streaking" when initially following a graphics.gd/classdb/Node3D, be sure to call Instance.GetGlobalTransformInterpolated at least once before resetting the graphics.gd/classdb/Node3D physics interpolation.
func (Instance) GetParentNode3d ¶
Returns the parent graphics.gd/classdb/Node3D that directly affects this node's Instance.GlobalTransform. Returns null if no parent exists, the parent is not a graphics.gd/classdb/Node3D, or Instance.TopLevel is true.
Note: This method is not always equivalent to graphics.gd/classdb/Node.Instance.GetParent, which does not take Instance.TopLevel into account.
func (Instance) GetWorld3d ¶
Returns the graphics.gd/classdb/World3D this node is registered to.
Usually, this is the same as the world used by this node's viewport (see graphics.gd/classdb/Node.Instance.GetViewport and graphics.gd/classdb/Viewport.Instance.FindWorld3d).
func (Instance) GlobalBasis ¶
func (Instance) GlobalPosition ¶
func (Instance) GlobalRotate ¶
Rotates this node's Instance.GlobalBasis around the global 'axis' by the given 'angle', in radians. This operation is calculated in global space (relative to the world) and preserves the Instance.GlobalPosition.
func (Instance) GlobalRotation ¶
func (Instance) GlobalRotationDegrees ¶
func (Instance) GlobalScale ¶
Scales this node's Instance.GlobalBasis by the given 'scale' factor. This operation is calculated in global space (relative to the world) and preserves the Instance.GlobalPosition.
Note: This method is not to be confused with the Instance.Scale property.
func (Instance) GlobalTransform ¶
func (self Instance) GlobalTransform() Transform3D.BasisOrigin
func (Instance) GlobalTranslate ¶
Adds the given translation 'offset' to the node's Instance.GlobalPosition in global space (relative to the world).
func (Instance) Hide ¶
func (self Instance) Hide()
Prevents this node from being rendered. Equivalent to setting Instance.Visible to false. This is the opposite of Instance.Show.
func (Instance) IsLocalTransformNotificationEnabled ¶
Returns true if the node receives NotificationLocalTransformChanged whenever Instance.Transform changes. This is enabled with Instance.SetNotifyLocalTransform.
func (Instance) IsScaleDisabled ¶
Returns true if this node's Instance.GlobalTransform is automatically orthonormalized. This results in this node not appearing distorted, as if its global scale were set to [Vector3.One] (or its negative counterpart). See also Instance.SetDisableScale and Instance.Orthonormalize.
Note: Instance.Transform is not affected by this setting.
func (Instance) IsTransformNotificationEnabled ¶
Returns true if the node receives NotificationTransformChanged whenever Instance.GlobalTransform changes. This is enabled with Instance.SetNotifyTransform.
func (Instance) IsVisibleInTree ¶
Returns true if this node is inside the scene tree and the Instance.Visible property is true for this node and all of its graphics.gd/classdb/Node3D ancestors in sequence. An ancestor of any other type (such as graphics.gd/classdb/Node or graphics.gd/classdb/Node2D) breaks the sequence. See also graphics.gd/classdb/Node.Instance.GetParent.
Note: This method cannot take graphics.gd/classdb/VisualInstance3D.Instance.Layers into account, so even if this method returns true, the node may not be rendered.
func (Instance) LookAt ¶
Rotates the node so that the local forward axis (-Z, [Vector3.Forward]) points toward the 'target' position. This operation is calculated in global space (relative to the world).
The local up axis (+Y) points as close to the 'up' vector as possible while staying perpendicular to the local forward axis. The resulting transform is orthogonal, and the scale is preserved. Non-uniform scaling may not work correctly.
The 'target' position cannot be the same as the node's position, the 'up' vector cannot be [Vector3.Zero]. Furthermore, the direction from the node's position to the 'target' position cannot be parallel to the 'up' vector, to avoid an unintended rotation around the local Z axis.
If 'use_model_front' is true, the +Z axis (asset front) is treated as forward (implies +X is left) and points toward the 'target' position. By default, the -Z axis (camera forward) is treated as forward (implies +X is right).
Note: This method fails if the node is not in the scene tree. If necessary, use Instance.LookAtFromPosition instead.
func (Instance) LookAtFromPosition ¶
Moves the node to the specified 'position', then rotates the node to point toward the 'target' position, similar to Instance.LookAt. This operation is calculated in global space (relative to the world).
func (Instance) OnVisibilityChanged ¶
func (Instance) Orthonormalize ¶
func (self Instance) Orthonormalize()
Orthonormalizes this node's Instance.Basis. This method sets this node's Instance.Scale to [Vector3.One] (or its negative counterpart), but preserves the Instance.Position and Instance.Rotation. See also graphics.gd/classdb/Transform3D.Instance.Orthonormalized.
func (Instance) Quaternion ¶
func (self Instance) Quaternion() Quaternion.IJKX
func (Instance) Rotate ¶
Rotates this node's Instance.Basis around the 'axis' by the given 'angle', in radians. This operation is calculated in parent space (relative to the parent) and preserves the Instance.Position.
func (Instance) RotateObjectLocal ¶
Rotates this node's Instance.Basis around the 'axis' by the given 'angle', in radians. This operation is calculated in local space (relative to this node) and preserves the Instance.Position.
func (Instance) RotateX ¶
Rotates this node's Instance.Basis around the X axis by the given 'angle', in radians. This operation is calculated in parent space (relative to the parent) and preserves the Instance.Position.
func (Instance) RotateY ¶
Rotates this node's Instance.Basis around the Y axis by the given 'angle', in radians. This operation is calculated in parent space (relative to the parent) and preserves the Instance.Position.
func (Instance) RotateZ ¶
Rotates this node's Instance.Basis around the Z axis by the given 'angle', in radians. This operation is calculated in parent space (relative to the parent) and preserves the Instance.Position.
func (Instance) RotationDegrees ¶
func (Instance) RotationEditMode ¶
func (self Instance) RotationEditMode() RotationEditMode
func (Instance) RotationOrder ¶
func (Instance) ScaleObjectLocal ¶
Scales this node's Instance.Basis by the given 'scale' factor. This operation is calculated in local space (relative to this node) and preserves the Instance.Position.
func (Instance) SetDisableScale ¶
If true, this node's Instance.GlobalTransform is automatically orthonormalized. This results in this node not appearing distorted, as if its global scale were set to [Vector3.One] (or its negative counterpart). See also Instance.IsScaleDisabled and Instance.Orthonormalize.
Note: Instance.Transform is not affected by this setting.
func (Instance) SetGlobalBasis ¶
func (Instance) SetGlobalPosition ¶
func (Instance) SetGlobalRotation ¶
func (Instance) SetGlobalRotationDegrees ¶
func (Instance) SetGlobalTransform ¶
func (self Instance) SetGlobalTransform(value Transform3D.BasisOrigin)
func (Instance) SetIdentity ¶
func (self Instance) SetIdentity()
Sets this node's Instance.Transform to [Transform3d.Identity], which resets all transformations in parent space (Instance.Position, Instance.Rotation, and Instance.Scale).
func (Instance) SetIgnoreTransformNotification ¶
If true, the node will not receive NotificationTransformChanged or NotificationLocalTransformChanged.
It may useful to call this method when handling these notifications to prevent infinite recursion.
func (Instance) SetNotifyLocalTransform ¶
If true, the node will receive NotificationLocalTransformChanged whenever Instance.Transform changes.
Note: Some 3D nodes such as graphics.gd/classdb/CSGShape3D or graphics.gd/classdb/CollisionShape3D automatically enable this to function correctly.
func (Instance) SetNotifyTransform ¶
If true, the node will receive NotificationTransformChanged whenever Instance.GlobalTransform changes.
Note: Most 3D nodes such as graphics.gd/classdb/VisualInstance3D or graphics.gd/classdb/CollisionObject3D automatically enable this to function correctly.
Note: In the editor, nodes will propagate this notification to their children if a gizmo is attached (see Instance.AddGizmo).
func (Instance) SetPosition ¶
func (Instance) SetQuaternion ¶
func (self Instance) SetQuaternion(value Quaternion.IJKX)
func (Instance) SetRotation ¶
func (Instance) SetRotationDegrees ¶
func (Instance) SetRotationEditMode ¶
func (self Instance) SetRotationEditMode(value RotationEditMode)
func (Instance) SetRotationOrder ¶
func (Instance) SetSubgizmoSelection ¶
func (self Instance) SetSubgizmoSelection(gizmo Node3DGizmo.Instance, id int, transform Transform3D.BasisOrigin)
Selects the 'gizmo”s subgizmo with the given 'id' and sets its transform. Only works in the editor.
Note: The gizmo object would typically be an instance of graphics.gd/classdb/EditorNode3DGizmo, but the argument type is kept generic to avoid creating a dependency on editor classes in graphics.gd/classdb/Node3D.
func (Instance) SetTopLevel ¶
func (Instance) SetTransform ¶
func (self Instance) SetTransform(value Transform3D.BasisOrigin)
func (Instance) SetVisibilityParent ¶
func (Instance) SetVisible ¶
func (Instance) Show ¶
func (self Instance) Show()
Allows this node to be rendered. Equivalent to setting Instance.Visible to true. This is the opposite of Instance.Hide.
func (Instance) ToGlobal ¶
Returns the 'local_point' converted from this node's local space to global space. This is the opposite of Instance.ToLocal.
func (Instance) ToLocal ¶
Returns the 'global_point' converted from global space to this node's local space. This is the opposite of Instance.ToGlobal.
func (Instance) Transform ¶
func (self Instance) Transform() Transform3D.BasisOrigin
func (Instance) Translate ¶
Adds the given translation 'offset' to the node's position, in local space (relative to this node).
Note: Prefer using Instance.TranslateObjectLocal, instead, as this method may be changed in a future release.
Note: Despite the naming convention, this operation is not calculated in parent space for compatibility reasons. To translate in parent space, add 'offset' to the Instance.Position (node_3d.position += offset).
func (Instance) TranslateObjectLocal ¶
Adds the given translation 'offset' to the node's position, in local space (relative to this node).
func (Instance) UpdateGizmos ¶
func (self Instance) UpdateGizmos()
Updates all the graphics.gd/classdb/EditorNode3DGizmo objects attached to this node. Only works in the editor.
func (Instance) VisibilityParent ¶
type RotationEditMode ¶
type RotationEditMode int //gd:Node3D.RotationEditMode
const ( // The rotation is edited using a [Vector3.XYZ] in [Euler angles]. // // [Euler angles]: https://en.wikipedia.org/wiki/Euler_angles RotationEditModeEuler RotationEditMode = 0 // The rotation is edited using a [Quaternion.IJKX]. RotationEditModeQuaternion RotationEditMode = 1 // The rotation is edited using a [Basis.XYZ]. In this mode, the raw [Instance.Basis]'s axes can be freely modified, but the [Instance.Scale] property is not available. RotationEditModeBasis RotationEditMode = 2 )