Hello,
Let's say I have 50 bullets with an internal variable named "Color"
I was wondering between these 2 series of events which one would run faster:
-Bullet.Color == 1: Action X
-Bullet.Color == 2: Action Y
-------------------------------------------
-For Each Bullet
+ Bullet.Color == 1: Action X
ELSE Bullet.Color == 2: Action Y
The 2nd seems to have less comparisons but I am unsure how C2 instance selector works. Can you help me please ?
Thanks a lot