-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
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 ?