class-description NEWS COMMUNITY STORE LABS SIGN UP LOGIN LOGOUT ROKOJORI NEWSLETTER SIGN UP LOGIN LOGOUT NEWS COMMUNITY STORE LABS TOGGLE FULLSCREEN VOLLBILD AN/AUS ObjectNodeCanvasItem Node2D
A 2D game object, inherited by all 2D-related nodes. Has a position, rotation, scale, and Z index.

A 2D game object, with a transform (position, rotation, and scale). All 2D nodes, including physics objects and sprites, inherit from Node2D. Use Node2D as a parent node to move, scale and rotate children in a 2D project. Also gives control of the node's render order.

Vector2 global_position<>():Vector2

Global position.

float global_rotation<>():float

Global rotation in radians.

float global_rotation_degrees<>():float

Helper property to access global_rotation in degrees instead of radians.

Vector2 global_scale<>():Vector2

Global scale.

float global_skew<>():float

Global skew in radians.

Transform2D global_transform<>():Transform2D

Global Transform2D.

Vector2 position<>():Vector2

Position, relative to the node's parent.

float rotation<>():float

Rotation in radians, relative to the node's parent.

Note: This property is edited in the inspector in degrees. If you want to use degrees in a script, use rotation_degrees.

float rotation_degrees<>():float

Helper property to access rotation in degrees instead of radians.

Vector2 scale<>():Vector2

The node's scale. Unscaled value: (1, 1).

Note: Negative X scales in 2D are not decomposable from the transformation matrix. Due to the way scale is represented with transformation matrices in Godot, negative scales on the X axis will be changed to negative scales on the Y axis and a rotation of 180 degrees when decomposed.

float skew<>():float

Slants the node.

Note: Skew is X axis only.

Transform2D transform<>():Transform2D

Local Transform2D.

void apply_scale<>( Vector2 ratio=, ratio:Vector2=, ):void

Multiplies the current scale by the ratio vector.

float get_angle_to<>( Vector2 point=, point:Vector2=, ):float

Returns the angle between the node and the point in radians.

Illustration of the returned angle.

Transform2D get_relative_transform_to_parent<>( Node parent=, parent:Node=, ):Transform2D

Returns the Transform2D relative to this node's parent.

void global_translate<>( Vector2 offset=, offset:Vector2=, ):void

Adds the offset vector to the node's global position.

void look_at<>( Vector2 point=, point:Vector2=, ):void

Rotates the node so it points towards the point, which is expected to use global coordinates.

void move_local_x<>( float delta=, delta:float=, bool scaled=false, scaled:bool=false, ):void

Applies a local translation on the node's X axis based on the Node._process's delta. If scaled is false, normalizes the movement.

void move_local_y<>( float delta=, delta:float=, bool scaled=false, scaled:bool=false, ):void

Applies a local translation on the node's Y axis based on the Node._process's delta. If scaled is false, normalizes the movement.

void rotate<>( float radians=, radians:float=, ):void

Applies a rotation to the node, in radians, starting from its current rotation.

Vector2 to_global<>( Vector2 local_point=, local_point:Vector2=, ):Vector2

Transforms the provided local position into a position in global coordinate space. The input is expected to be local relative to the Node2D it is called on. e.g. Applying this method to the positions of child nodes will correctly transform their positions into the global coordinate space, but applying it to a node's own position will give an incorrect result, as it will incorporate the node's own transformation into its global position.

Vector2 to_local<>( Vector2 global_point=, global_point:Vector2=, ):Vector2

Transforms the provided global position into a position in local coordinate space. The output will be local relative to the Node2D it is called on. e.g. It is appropriate for determining the positions of child nodes, but it is not appropriate for determining its own position relative to its parent.

void translate<>( Vector2 offset=, offset:Vector2=, ):void

Translates the node by the given offset in local coordinates.




All social media brands are registrated trademarks and belong to their respective owners.





CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
We are using cookies on this site. Read more... Wir benutzen Cookies auf dieser Seite. Mehr lesen...