godot get global position 3

To get the global position of a node in GDScript using the Godot game engine, you can use the global_position property. Here's an example:

var node = getNode() # Replace getNode() with the actual node you want to get the global position of
var globalPosition = node.global_position

The global_position property returns a Vector2 or Vector3 (depending on the node's position type) representing the node's position in global coordinates.

Please note that the global_position property is only available for nodes that inherit from Spatial or CanvasItem classes. If you're using a different type of node, you may need to use a different property or method to get its position.

I hope this helps!