From 3f53502a5907ed1982d28a392c54331f0c1c2c42 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 25 Sep 2025 12:09:50 -0400 Subject: Move the client into the apworld Only works on source right now, not as an apworld. --- apworld/client/compass_overlay.gd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apworld/client/compass_overlay.gd (limited to 'apworld/client/compass_overlay.gd') diff --git a/apworld/client/compass_overlay.gd b/apworld/client/compass_overlay.gd new file mode 100644 index 0000000..56e81ff --- /dev/null +++ b/apworld/client/compass_overlay.gd @@ -0,0 +1,17 @@ +extends CanvasLayer + +var SCRIPT_compass + +var compass + + +func _ready(): + compass = SCRIPT_compass.new() + compass.position = Vector2(1840, 80) + add_child(compass) + + visible = false + + +func update_rotation(ry): + compass.rotation = ry -- cgit 1.4.1