r3-next/main.gd

37 lines
943 B
GDScript3
Raw Permalink Normal View History

2023-08-09 02:36:38 +02:00
extends Node
2023-11-01 17:35:54 +01:00
const loadgame = preload("res://load.gd")
const savegame = preload("res://save.gd")
2023-08-09 02:36:38 +02:00
# Called when the node enters the scene tree for the first time.
func _ready():
2023-12-02 21:44:54 +01:00
Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN)
2024-01-14 03:59:55 +01:00
#OS.get_data_dir().rsplit("/", true, 7)[2]
2023-11-01 17:35:54 +01:00
loadgame.new()
2023-12-28 13:54:25 +01:00
print(OS.get_processor_name())
2023-11-01 17:35:54 +01:00
#pass # Replace with function body.
2023-08-09 02:36:38 +02:00
#add_child(title)
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _init():
func _process(delta):
pass
func _input(event):
# Mouse in viewport coordinates.
2024-01-16 13:58:51 +01:00
if !Global.sk && Input.is_action_just_pressed("ui_accept"):
2023-08-09 20:42:51 +02:00
#print("Mouse Click/Unclick at: ", event.position)
2023-12-02 21:44:54 +01:00
_title()
2023-08-09 02:36:38 +02:00
func _title():
# This is like autoloading the scene, only
# it happens after already loading the main scene.
get_tree().change_scene_to_file("res://title.tscn")
#get_tree().root.add_child(title)
#get_tree().root.remove_child(boot)
#boot.queue_free()