Good evening guys,
I just compile my new game and a Runtime Error came trash my evening :
Here :
Could you please fill me in if, by any chance, you know what is the meaning of this or if you already have had this issue in the past.
Thanks a lot.
Good evening guys,
I just compile my new game and a Runtime Error came trash my evening :
Here :
Could you please fill me in if, by any chance, you know what is the meaning of this or if you already have had this issue in the past.
Thanks a lot.
It means you have a syntax error in your game or a logic error and you’re trying to access something that doesn’t exist in that scope or has been deleted.
You should use logcat to get the full log because there are likely more errors that will help point out the line in your code where the error occurred.
10$ says this will happen on the simulator eventually too, but it may be a timing dependent bug in your code that only happens on specific sequences or events.
PS - I assume that is on and Android device but if I’m wrong then just used the xCode console to look at the error messages.
It means you have a syntax error in your game or a logic error and you’re trying to access something that doesn’t exist in that scope or has been deleted.
You should use logcat to get the full log because there are likely more errors that will help point out the line in your code where the error occurred.
10$ says this will happen on the simulator eventually too, but it may be a timing dependent bug in your code that only happens on specific sequences or events.
PS - I assume that is on and Android device but if I’m wrong then just used the xCode console to look at the error messages.