ZDoom translations
https://zdoom.org/wiki/Translation
To use a translation in Lua, set the translation
field of an object to its name (object.translation = "Grayscale"
). In SOC, use A_SetTranslation
and Var1
with Translation_<name>
(note that SOC is mostly case insensitive.)
Built-in translation Grayscale . |
---|
RedSat = "0:255=%[0,0,0]:[1,0,0]" |
GreenSat = "0:255=%[0,0,0]:[0,1,0]" |
---|---|
Example1:GreenSat = "96:112=%[0,0,0]:[0,0,0]" |
AllBlack = "0:255=%[0,0,0]:[0,0,0]" |
---|---|