Update CP14CloudShadowsComponent.cs

This commit is contained in:
Ed
2024-07-03 15:17:46 +03:00
parent d3895e8288
commit 786c0ed97c

View File

@@ -6,12 +6,12 @@ namespace Content.Shared._CP14.DayCycle;
/// <summary>
/// if added to the map, renders cloud shadows on the map
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class CP14CloudShadowsComponent : Component
{
[DataField]
[DataField, AutoNetworkedField]
public Vector2 CloudSpeed = new Vector2(0.5f, 0f);
[DataField]
[DataField, AutoNetworkedField]
public float Alpha = 1f;
}