15 lines
380 B
C#
15 lines
380 B
C#
namespace Content.Client.Rotation;
|
|
|
|
[RegisterComponent]
|
|
public sealed class RotationVisualsComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public Angle VerticalRotation = 0;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public Angle HorizontalRotation = Angle.FromDegrees(90);
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float AnimationTime = 0.125f;
|
|
}
|