Files
tbd-station-14/Content.Shared/Chasm/ChasmFallingComponent.cs
Pieter-Jan Briers e00f74505c Use new ComponentPauseGenerator (#25183)
Also includes some (non critical) changes to the solution file to re-organize the Roslyn components.
2024-02-26 14:36:19 +11:00

39 lines
1.3 KiB
C#

using System.Numerics;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Shared.Chasm;
/// <summary>
/// Added to entities which have started falling into a chasm.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentPause]
public sealed partial class ChasmFallingComponent : Component
{
/// <summary>
/// Time it should take for the falling animation (scaling down) to complete.
/// </summary>
[DataField("animationTime")]
public TimeSpan AnimationTime = TimeSpan.FromSeconds(1.5f);
/// <summary>
/// Time it should take in seconds for the entity to actually delete
/// </summary>
[DataField("deletionTime")]
public TimeSpan DeletionTime = TimeSpan.FromSeconds(1.8f);
[DataField("nextDeletionTime", customTypeSerializer:typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan NextDeletionTime = TimeSpan.Zero;
/// <summary>
/// Original scale of the object so it can be restored if the component is removed in the middle of the animation
/// </summary>
public Vector2 OriginalScale = Vector2.Zero;
/// <summary>
/// Scale that the animation should bring entities to.
/// </summary>
public Vector2 AnimationScale = new Vector2(0.01f, 0.01f);
}