namespace Content.Client.Light.Components;
///
/// Fades out the attached to this entity.
///
[RegisterComponent]
public sealed partial class LightFadeComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("duration")]
public float Duration = 0.5f;
//
// The duration of the fade-in effect before starting the fade out effect.
//
[ViewVariables(VVAccess.ReadWrite), DataField]
public float RampUpDuration = 0f;
}