12 lines
198 B
C#
12 lines
198 B
C#
using Godot;
|
|
using Newlon;
|
|
|
|
public partial class RightBoundaryMarker : Marker2D
|
|
{
|
|
public override void _Ready()
|
|
{
|
|
FieldParams.RightFieldBoundary = (Vector2I)GlobalPosition;
|
|
QueueFree();
|
|
}
|
|
|
|
}
|