Godot 4 get and set position of a 2d characterbody?

Global position doesn't work here. It's important to me that the player's position is determined in the player code and can also be "set."

What is the best way to do this?

var a = player.get_global_position

player.set_global_position(a)

As I said, it doesn't work, probably because it's not in the world.

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
7 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
paaauleee
1 year ago

depends on what you want to do with it – if you want to determine the position of the player in a scene:

var pos: Vector2 = player.global_position
player.global_position: Vector2 = pos

but it doesn’t make sense – except you want to access the position in another script or node

you can also do the whole thing with position instead of global_position – write exactly what you want – you can better help

paaauleee
1 year ago
Reply to  Gamer4214

Ah ok – just to understand – your individual worlds are each a scene (including PlayerNode and what you otherwise see and need and pipapo) – and let’s say the player stands on global_position(100, 100) in World_02 and exactly this value (player position(100, 100) should also be passed on to World 3?

paaauleee
1 year ago

Ah ok – I think I’ve snapped it – you can save the player’s position in a global script – as a single tone. To do this, first put n script – no node or so – really just one script – in this case it can call “Globals.gd” – go to Project (above) – to Project Settings – Autoload – loads the script and then click on “Add” – now you can access it from every scene, node, etc.
Then set a variable in the global script – call it “var global_pos: Vector2” – if you press the player’s postage to this global variable – “Globals.global_pos = player.global_position” – “if the scene is reloaded after the break – you can pass the _ready() function to query the position stored there

paaauleee
1 year ago

Ok 🙂 Now I don’t look through – just write it – so really step by step…what is done – so for outstanding or dullies like me – best on the basis of a scene….