Big List of Defold Pro Tips!

Configuration settings retrieved with sys.get_config() are returned as string values; if you’re reading something that needs to be treated as a number (such as display height), use the Lua ‘tonumber’ function to convert the string into a number:

tonumber(sys.get_config("display.height"))
2 Likes