newlon/scripts/level/RightBoundaryMarker.cs
2025-07-11 22:35:36 +05:00

12 lines
194 B
C#

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