Godot 3 Parser Error: Expected ',' or ')' error in my code?

I'm programming a game on the godot game engine. There's an error in the programming, but I don't know if it will work without errors. I need urgent help. My code: extends KinematicBody const MAXSPEED = 30 const ACCELERATION = 0.75 var inputVector = Vector3() var velo = Vector3() func _physics_process(delta): inputVector.x = Input.get_action_strength("ui_right") –…

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.

How do I insert a scene into another multiple times and change its position in Godot?

The question pretty much sums it up. I want to insert a scene into another in Godot multiple times, changing the position each time. This is my attempt: extends Control var participants = Main.participants var participants_even var participants_odd var num_of_double_panels var num_of_single_panels var double_panel = load("res://DoublePanel.tscn").instance() var single_panel = load("res://SinglePanel.tscn").instance() var position_x = 180 var…