mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-11 20:06:14 +01:00
9 lines
173 B
GDScript
9 lines
173 B
GDScript
extends Control
|
|
|
|
var player_id = 2
|
|
|
|
func _ready():
|
|
var gui = self.get_node("Speedometer_player1")
|
|
for body in gui.get_children():
|
|
body.anchors_preset = CORNER_TOP_RIGHT
|