Fix some build warnings (#6832)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
@@ -13,20 +13,20 @@ namespace Content.Shared.Rotatable
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("rotateWhileAnchored")]
|
||||
public bool RotateWhileAnchored { get; protected set; }
|
||||
public bool RotateWhileAnchored { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// If true, will rotate entity in players direction when pulled
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("rotateWhilePulling")]
|
||||
public bool RotateWhilePulling { get; protected set; } = true;
|
||||
public bool RotateWhilePulling { get; private set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// The angular value to change when using the rotate verbs.
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("increment")]
|
||||
public Angle Increment { get; protected set; } = Angle.FromDegrees(90);
|
||||
public Angle Increment { get; private set; } = Angle.FromDegrees(90);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user