Hi,
Is it possible to use some form of or operator when picking sprites by an instance variable?
I'm building a card game, and on the deckbuilder screen I want to display the cards that are available to be selected in a grid formation on the screen. I have a function that does this using a for each loop, and an equation using the loopindex to space them out properly, but for this to work properly, I need to have narrowed them down the cards available to the player based on previous selection (stored as a global variable).
Basically I want to create an expression that says where instance variable = 0 or instance variable = 3 then pick all of those sprites.
If anyone can tell me if this is possible, and the best way of doing it would be great, thanks!