Files
tbd-station-14/Content.Client/Light/Components/LightFadeComponent.cs
2023-04-26 13:51:48 +10:00

12 lines
328 B
C#

namespace Content.Client.Light.Components;
/// <summary>
/// Fades out the <see cref="SharedPointLightComponent"/> attached to this entity.
/// </summary>
[RegisterComponent]
public sealed class LightFadeComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("duration")]
public float Duration = 0.5f;
}