Let's say I want to Pick sprites that have four different animations names, pick all the instances that happens have one of these following names:
Play
Hello
Flower
Rabbit
how would I do it best way?
I tried first
Pick Sprite where Sprite.AnimationName = "Play"
or
Pick Sprite where Sprite.AnimationName = "Hello"
or
Pick Sprite where Sprite.AnimationName = "Flower"
or
Pick Sprite where Sprite.AnimationName = "Rabbit"
---Subevent
For each Sprite order by 0 Ascending
more sub events.....
Then I removed the "or"..
but neither seems to work so maybe this is bad logic?