is it possible to mix ORs with ANDs in C2?
i.e.
If Keyboard Spacebar OR Gamepad button 0 pressed AND GunReady is True
Then Spawn Projectile
Else
Countdown Reload etc..
I'm basically trying to add controller support..
Yes, first make the OR events, then make sub events under it.
Develop games in your browser. Powerful, performant & highly capable.
right, you could nest it.. I was just wondering if there is a way to do it on the same level... I guess not?
There is no way to embed AND with OR into the same Event. pitty :|
Yes ..Jobel... Burvey is right..nesting as mentioned is the proper procedure
okay thanks!