This commit is contained in:
firefighter198
2021-08-11 00:26:20 +02:00
parent 7424309dac
commit 7146b2639c
44 changed files with 867 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using Godot;
using System;
public class Menu : Control
{
public override void _Process(float delta)
{
if (Input.IsActionJustPressed("Click"))
{
GetTree().ChangeScene("res://World.tscn");
}
}
}