The standard vocabulary for calling notes etc. follows the names on Wikia.
The tips below are to help you understand the coding conventions in this repo.
For coding style, use:
_camelCaseWithAPrefixUnderscorefor private instance members (private,private static, andprivate readonly);camelCasefor parameters and local variables;PascalCasefor the rest, includingprivate static readonly.
Visibility order: public -> protected -> private
Arcaea's beatmap coordinate system and Arcaea's coordinate system (in code): left hand, Y-up (OpenGL coordinate system).
Y
Z |
\--X
ArcaeaSim's coordinate system (in code): right hand, Z-up (Direct3D and mathematical coordinate system).
Z
Y |
\--X