Improved UI calls

This commit is contained in:
=
2026-05-05 20:21:05 +02:00
parent 5882f3865d
commit abeb8c0902
5 changed files with 88 additions and 57 deletions
+5 -6
View File
@@ -23,12 +23,6 @@ public partial class CodingWindow : PanelContainer
}
public void ShowWindow(Robot robot)
{
Visible = true;
this.robot = robot;
}
//Move, Harvest, Craft
public void GenerateCodingBlocks()
{
@@ -74,4 +68,9 @@ public partial class CodingWindow : PanelContainer
if(nodes.Count > 0) robot.SetupExecution(nodes);
}
public void SetRobot(Robot robot)
{
this.robot = robot;
}
}