mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
12 lines
336 B
C#
12 lines
336 B
C#
namespace Content.Client.Light.Components;
|
|
|
|
/// <summary>
|
|
/// Fades out the <see cref="SharedPointLightComponent"/> attached to this entity.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class LightFadeComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("duration")]
|
|
public float Duration = 0.5f;
|
|
}
|