LightFadeComponent.cs 336 B

1234567891011
  1. namespace Content.Client.Light.Components;
  2. /// <summary>
  3. /// Fades out the <see cref="SharedPointLightComponent"/> attached to this entity.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class LightFadeComponent : Component
  7. {
  8. [ViewVariables(VVAccess.ReadWrite), DataField("duration")]
  9. public float Duration = 0.5f;
  10. }