Page 1 of 1

[2.0.27] Light in StatelessVisualisation (example or docs)

Posted: Mon Dec 23, 2024 4:06 pm
by i142857
According to the StatelessVisualisation docs you can use it to make a light on an entity. There are no examples of this in base or space-age (that I can find) and no explanation in the docs on how that works. I'm trying to guess but it doesn't seem to be working. For instance adding this to a container-type entity does nothing:

Code: Select all

            stateless_visualisation = {
                {
                    -- This doesn't do anything but I have no idea why.
                    count = 1,
                    render_layer = "light-effect",
                    light = {
                        intensity = 1.0,
                        size = 10.0,
                        color = { r = 0, g = 0, b = 1 },
                    },
                }
            }
How is one supposed to use this?