Naming Standards - AdamCvijanovic/Herding-Ghosts-Unity GitHub Wiki

The file naming convention is ...

For FOLDERS use PascalCase eg. GeneralFolder

For ART ASSETS use camelCase eg. artAsset

For SOUND ASSETS consult the naming conventions in AUDIO

For SCRIPTS use PascalCase Eg. ScriptAsset

For SCENE ELEMENTS use PascalCase eg. SceneObject

The Scripting Convention is...

Class Names in PascalCase eg. GeneralClass

Method Names in PascalCase eg. GeneralMethod

Non Member Variable Names are camelCase eg. nonMemberVariable

Member Variables are underscoreCamel eg. _memberVariable