2023-04-26 13:51:48 +10:00
|
|
|
namespace Content.Client.Light.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fades out the <see cref="SharedPointLightComponent"/> attached to this entity.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class LightFadeComponent : Component
|
2023-04-26 13:51:48 +10:00
|
|
|
{
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("duration")]
|
|
|
|
|
public float Duration = 0.5f;
|
|
|
|
|
}
|