LD56 is over. This is the game.

This commit is contained in:
Douwe Ravers
2024-10-07 02:28:14 +02:00
parent 4c0c57d5ba
commit af7a46cd23
183 changed files with 20357 additions and 442 deletions

View File

@@ -0,0 +1,8 @@
extends Node
func _ready() -> void:
var scene := get_tree().current_scene
var data := LinkData.new()
if not data.has_link(scene.scene_file_path): return
var new_scene_path := data.get_link(scene.scene_file_path)
get_tree().call_deferred("change_scene_to_file",new_scene_path)