Quote: "How does one disable the ability for players to control the ambient lighting in build games with "<" and ">"?"
The keys are actually "," and ".". There was a thread
here but the script posted does not work in my version.
The current source has this section relating to the adjusting of keys.
_lighting_ambientcontrol:
rem Irrespective of dynamic light setting
tempam=guivisualsettings.ambience
if inkey$()="," and guivisualsettings.ambience>0 then dec guivisualsettings.ambience : guivisualsettings.updateflag=1 : ambiencetimer=5 : watertimer=0
if inkey$()="." and guivisualsettings.ambience<100 then inc guivisualsettings.ambience : guivisualsettings.updateflag=1 : ambiencetimer=5 : watertimer=0
if ambiencetimer>0 and gtestgamemodefromeditor=1
For us, we modded our source by adding a command that will disable or enable the code block in question. I've tried a few scripts that set the ambience to 50 when the two keys are pressed, but still see the ambience slightly change each time. I don't know of any other way other than modding the source.
There's no problem that can't be solved without applying a little scripting.