Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Sorry for being slow on the reply. If you still need help with this, I managed to fix this by changing the "none_to_float" function around line 173 to

def none_to_float(param):
                if param is None:
                    return 0.0
                if isinstance(param, position):
                    return param.relative
                return param

Think that should help make it not crash anymore.