The exposed C++<->Lua api is fairly consistent, but the pure Lua API is messy as fuck.
Here's how I'm doing it:
- local vars are simpleCaseCamelCased
- global vars are UpperCaseCamelCased, with the exception of
gm_voxelate
- class methods are UpperCaseCamelCased
- avoid using snake_case because it looks weird af tbh
Thoughts @birdbrainswagtrain ?
The exposed C++<->Lua api is fairly consistent, but the pure Lua API is messy as fuck.
Here's how I'm doing it:
gm_voxelateThoughts @birdbrainswagtrain ?