1
0

LightOnCollideColliderComponent.cs 359 B

12345678910111213
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Light.Components;
  3. /// <summary>
  4. /// Can activate <see cref="LightOnCollideComponent"/> when collided with.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class LightOnCollideColliderComponent : Component
  8. {
  9. [DataField]
  10. public string FixtureId = "lightTrigger";
  11. }