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.
depends on what you want to do with it – if you want to determine the position of the player in a scene:
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
I want to determine the player position in a game with several worlds and query where the position is and then retrieve it at a break or menu. that the player does not always spawn at the beginning.
that’s why this query has to be in the game code because I have to retrieve in every world.
maybe there’s something with get tree that protrudes beyond the player tree to still have a query in the player script.
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?
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
I’m in a game. spawne on the map at the beginning. then I’m paused. after I removed the break, I spawn again at the beginning of the map. I should be at the same place as before the break. the pause menu is a personal data (so change scene pause) in my case.
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….
no, not quite. the pause menu is in your example world 3. at the right world 3 he spawns naturally at vector 0