Is it possible (and a good practice) to reuse the same actions for multiple CCSprites that use the same action?
For if I have 10 CCSprites that all need to be scaled. And I create a scale action called scaleAction. Is it possible to reuse the same action for a sprites?
When I tried to do that I get only one sprite scaling and not all of them. What’s the best way to do this?
Thanks in advance
Since the question asks about re-using one action for multiple sprites, the answer is a clear: no.
Each sprite must run its own actions. If there’s an action that’s already running on node A and you’re trying to run the same action on node B, the action will only affect one of the two nodes.