Hi, ppl. I've got a noobie question about perfomance.
What is the difference (on performance) of using (1 event or 3 events):
Every tick{
rotate.sprite
scale.sprite
move.sprite}
and:
Every tick{
rotate.sprite
}
Every tick{
scale.sprite
}
Every tick{
move.sprite
}
Creating more events will slow down the app or do they all "catch the same train"?
I've got some trouble on organizing the groups and now and then I think "hmmm, the code needs another every tick", then I remember that I've got one everytick event running up there and so I search for it and add to it). Is that something I really should worry about?
Thanks in advance