Moved robots to separate folders and a dedicated robotlist in the UI

This commit is contained in:
=
2026-04-29 14:08:02 +02:00
parent 17057487d6
commit 832fb47ec0
15 changed files with 176 additions and 47 deletions
+27
View File
@@ -0,0 +1,27 @@
using System.Threading.Tasks;
using Godot;
public partial class Robot : Node3D
{
public ProgramInterpreter interpreter;
public override void _Ready()
{
}
public override void _Process(double delta)
{
}
public void Move()
{
}
public void OnClicked()
{
GetNode<UIHandler>("/root/Main/CanvasLayer/UIHandler").ShowNamingPopup(this);
}
}