Files
tbd-station-14/Content.Shared/Camera/CameraRecoilComponent.cs

18 lines
465 B
C#

using System.Numerics;
using Robust.Shared.GameStates;
namespace Content.Shared.Camera;
[RegisterComponent]
[NetworkedComponent]
public sealed partial class CameraRecoilComponent : Component
{
public Vector2 CurrentKick { get; set; }
public float LastKickTime { get; set; }
/// <summary>
/// Basically I needed a way to chain this effect for the attack lunge animation. Sorry!
/// </summary>
public Vector2 BaseOffset { get; set; }
}