The problem I have is: when I hover (no click) over a sprite, all spawned instances react, instead of only that one sprite.
[code:309roz2z]MouseKeyboard: On Left Clicked on Sprite
> Sprite set opacity to 20[/code:309roz2z]
With 4 instances spawned, no problems here. Only the instance I clicked on gets the opacity-change.
[code:309roz2z]MouseKeyboard: Mouse is over Sprite
> Sprite set opacity to 20[/code:309roz2z]
Problem here is: all 4 instances get an opacity of 20, instead of the 1 instance I am pointing at.
How should I change the code so that I can point at 1 instance and only that pointed on instance gets the opacity change?