Hi guys, i have a question. I have a simple game where you shoot birds and each killed bird gives you 1 point in a global variable.
I had an event:
Bullet, on collision with Bird:
- bird destroy
- bullet destroy
I tried a second the event:
Bird, on collision with Bullet - System, Add 1 to Score.
I did a preview. it was not working. In an arbitrary way, one of every 10, 15, 20 birds killed counted as a point, so i would kill more than 20 birds and have a score of 2 or 3.
I tried changing the event to:
Bird on destroyed - System, Add 1 to Score.
I did a preview and it worked perfectly.
What is the difference between those two events? how come one worked fine and the other one was pure nonsense? They seem to represent the same logical event.
Thanks