Language
Use US English spelling.
BAD:
string colour = "red";
GOOD:
string color = "red";
The exception here is MonoBehaviour
as that's what the class is actually called.
Last updated
Was this helpful?
Use US English spelling.
BAD:
string colour = "red";
GOOD:
string color = "red";
The exception here is MonoBehaviour
as that's what the class is actually called.
Last updated
Was this helpful?