2023-09-08 22:55:16 +02:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
var crash := AudioStreamPlayer.new()
|
2023-09-12 18:23:48 +02:00
|
|
|
var wait
|
2023-09-08 22:55:16 +02:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
|
|
|
add_child(crash)
|
|
|
|
var titlemusic = load("res://sfx/complete.ogg")
|
|
|
|
crash.stream = titlemusic
|
|
|
|
crash.play(0)
|
2023-09-12 18:23:48 +02:00
|
|
|
wait = Time.get_ticks_msec()
|
2023-09-08 22:55:16 +02:00
|
|
|
#pass # Replace with function body.
|
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta):
|
|
|
|
pass
|
|
|
|
|
|
|
|
func _input(event):
|
|
|
|
# Mouse in viewport coordinates.
|
2023-09-12 18:23:48 +02:00
|
|
|
if (Time.get_ticks_msec() - wait) >= 1000 && (event is InputEventMouseButton || Input.is_joy_button_pressed(0,JOY_BUTTON_X) || Input.is_joy_button_pressed(0,JOY_BUTTON_Y) || Input.is_joy_button_pressed(0,JOY_BUTTON_A) || Input.is_joy_button_pressed(0,JOY_BUTTON_B) || Input.is_joy_button_pressed(0,JOY_BUTTON_BACK) || Input.is_joy_button_pressed(0,JOY_BUTTON_START) || Input.is_joy_button_pressed(0,JOY_BUTTON_RIGHT_SHOULDER) || Input.is_joy_button_pressed(0,JOY_BUTTON_LEFT_SHOULDER)):
|
2023-09-08 22:55:16 +02:00
|
|
|
#print("Mouse Click/Unclick at: ", event.position)
|
|
|
|
_title()
|
|
|
|
|
|
|
|
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()
|