↧
Answer by Spartan301
A function is not a way to store data, it stores a section of code so that it can be used again repeatedly with ease. For example if I have a gameObject that I want to move to a new location each time...
View ArticleAnswer by aldonaletto
A function *does* something, while a variable *stores* something (a function may also return a value, but that's another story - don't worry about this now). Variables usually have a type: **int**...
View Article