30 lines
799 B
C#
30 lines
799 B
C#
#nullable enable
|
|
using System.Threading.Tasks;
|
|
using Content.Server.Coordinates.Helpers;
|
|
using Content.Shared.Construction;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.Construction.Completions
|
|
{
|
|
[UsedImplicitly]
|
|
[DataDefinition]
|
|
public class SnapToGrid : IGraphAction
|
|
{
|
|
[DataField("southRotation")] public bool SouthRotation { get; private set; } = false;
|
|
|
|
public async Task PerformAction(IEntity entity, IEntity? user)
|
|
{
|
|
if (entity.Deleted) return;
|
|
|
|
entity.SnapToGrid();
|
|
if (SouthRotation)
|
|
{
|
|
entity.Transform.LocalRotation = Angle.Zero;
|
|
}
|
|
}
|
|
}
|
|
}
|