2023-01-05 16:45:23 +11:00
|
|
|
using Content.Shared.Sprite;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Sprite;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The non-networked client-only component to track active <see cref="SpriteFadeComponent"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(SpriteFadeSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class FadingSpriteComponent : Component
|
2023-01-05 16:45:23 +11:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public float OriginalAlpha;
|
|
|
|
|
}
|