frozenpeas
Technical User
I'm really pulling my hair out with this one.
This should at least trace 5,10,15,20,25,30....
But it outputs 5,5,5,5,5,5,5....
Any idea as to why?
frozenpeas
Code:
if (hitTest("_root.player.hit")) {
_root.pointsSave+=5;
trace(_root.pointsSave);
this.removeMovieClip();
}
This should at least trace 5,10,15,20,25,30....
But it outputs 5,5,5,5,5,5,5....
Any idea as to why?
frozenpeas