newlon/scripts/components/level/LeftBoundaryMarker.cs
2025-06-26 20:18:19 +05:00

12 lines
192 B
C#

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