Answer by tanoshimi
I have no idea what you're intending to achieve, but I imagine the reason why your code is not doing what you think it should is because the scope, types and values of your variables are all over the...
View ArticleAnswer by ArkaneX
The problem is, that you have some variables declared globally, and then in Awake function you don't initialize them, but instead you create local variables with the same name. So global variables...
View ArticleAnswer by tanoshimi
I have no idea what you're intending to achieve, but I imagine the reason why your code is not doing what you think it should is because the scope, types and values of your variables are all over the...
View ArticleAnswer by ArkaneX
The problem is, that you have some variables declared globally, and then in Awake function you don't initialize them, but instead you create local variables with the same name. So global variables...
View Article