newlon/scripts/level/LeftBoundaryMarker.cs
2025-07-17 11:44:10 +05:00

12 lines
196 B
C#

using Godot;
using Newlon;
public partial class LeftBoundaryMarker : Marker2D
{
public override void _Ready()
{
FieldParams.LeftFieldBoundary = (Vector2I)GlobalPosition;
QueueFree();
}
}