14 lines
309 B
GDScript
14 lines
309 B
GDScript
extends Control
|
|
|
|
# Load scene warcraft
|
|
func _on_WarCraft_pressed():
|
|
Global.goto_scene("res://scenes/levels/WarCraft.tscn")
|
|
|
|
|
|
func _on_Lightmap_pressed():
|
|
Global.goto_scene("res://developers/aurelien/CheckLightmap.tscn")
|
|
|
|
|
|
func _on_Dagger_pressed():
|
|
Global.goto_scene("res://developers/jeremy/Dagger.tscn")
|