Added more symbols to the game, added gates blocking pathfinding and improved DSL feedback system with enum for better control and UX

This commit is contained in:
=
2026-05-02 19:53:29 +02:00
parent ae7c98d482
commit a2c35c44cb
25 changed files with 277 additions and 30 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ public class CraftNode : ProgramNode
{
DisplayText = "Craft";
}
public override bool Execute(Robot robot, double delta)
public override NodeResult Execute(Robot robot, double delta)
{
GD.Print("Craft");
if (nextNode != null)
@@ -15,7 +15,7 @@ public class CraftNode : ProgramNode
}
else
{
return true;
return NodeResult.SUCCESS;
}
}