Survival mode ready

This commit is contained in:
Rendo 2025-06-26 20:18:19 +05:00
commit 7614b12076
50 changed files with 586 additions and 81 deletions

View file

@ -8,7 +8,7 @@ public partial class PlantEyesightLimiter : CollisionShape2D
{
if (Shape is SegmentShape2D segment)
{
segment.B = new Vector2(Utility.RightFieldBoundary.X-GlobalPosition.X, 0);
segment.B = new Vector2(Utility.RightFieldBoundary.X - GlobalPosition.X, 0);
}
}
}

View file

@ -13,7 +13,7 @@ public partial class SunflowerBehaviour : Node
public void Timeout()
{
_tree.Set("parameters/conditions/produce",true);
_tree.Set("parameters/conditions/produce", true);
}
}