You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
197 B
9 lines
197 B
extends Node2D
|
|
|
|
var time = 0
|
|
|
|
func _process(delta):
|
|
time += delta
|
|
rotation = sin(time)/10
|
|
if Input.is_mouse_button_pressed(BUTTON_LEFT):
|
|
get_tree().change_scene("res://Game Scenes/Game.tscn")
|
|
|