Remove lights compref (#19531)

This commit is contained in:
metalgearsloth
2023-09-11 19:18:06 +10:00
committed by GitHub
parent d315ce3c8c
commit 99b77bc2d3
64 changed files with 222 additions and 132 deletions

View File

@@ -41,6 +41,7 @@ namespace Content.Server.Light.EntitySystems
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;
[Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly PointLightSystem _pointLight = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
private static readonly TimeSpan ThunkDelay = TimeSpan.FromSeconds(2);
@@ -74,9 +75,10 @@ namespace Content.Server.Light.EntitySystems
private void OnMapInit(EntityUid uid, PoweredLightComponent light, MapInitEvent args)
{
// TODO: Use ContainerFill dog
if (light.HasLampOnSpawn != null)
{
var entity = EntityManager.SpawnEntity(light.HasLampOnSpawn, EntityManager.GetComponent<TransformComponent>(light.Owner).Coordinates);
var entity = EntityManager.SpawnEntity(light.HasLampOnSpawn, EntityManager.GetComponent<TransformComponent>(uid).Coordinates);
light.LightBulbContainer.Insert(entity);
}
// need this to update visualizers
@@ -386,16 +388,16 @@ namespace Content.Server.Light.EntitySystems
if (EntityManager.TryGetComponent(uid, out PointLightComponent? pointLight))
{
pointLight.Enabled = value;
_pointLight.SetEnabled(uid, value, pointLight);
if (color != null)
pointLight.Color = color.Value;
_pointLight.SetColor(uid, color.Value, pointLight);
if (radius != null)
pointLight.Radius = (float) radius;
_pointLight.SetRadius(uid, (float) radius, pointLight);
if (energy != null)
pointLight.Energy = (float) energy;
_pointLight.SetEnergy(uid, (float) energy, pointLight);
if (softness != null)
pointLight.Softness = (float) softness;
_pointLight.SetSoftness(uid, (float) softness, pointLight);
}
}