We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Importing classes is simple to do and it's helpful in some situations
You want to check if the game isn't in the low-quality mode so you don't lag people's computers out so you do
if (ClientPrefs.quality != 'Low') { ...
But that won't work.
you have to import ClientPrefs at the start of your script (hx file)
import handlers.ClientPrefs
after you do that you can now use variables in ClientPrefs!
You can do it with other things too (files for example import handlers.Files)
import handlers.Files