AcTools.Render.Kn5SpecificDeferred.Kn5ObjectRenderer.RemoveLight C# (CSharp) Method

RemoveLight() public method

public RemoveLight ( ) : void
return void
        public void RemoveLight() {
            var first = _pointLights.FirstOrDefault();
            if (first == null) return;

            Lights.Remove(first.Light);
            _pointLights.Remove(first);
        }