Hi everyone,
I want to launch a bullet at some markers by repeatedly calling this function.
Shouldnt this build a self-reducing list of markers, of which the first one is being shot at?
The setting or picking by boolean doesnt seem to work
Develop games in your browser. Powerful, performant & highly capable.
You are testing the boolean against the "false" string litteral, which can never be true. Replace "false" by 0 and it should work as expected.
Magistross Good call, thanks!
I found that I also needed to reduce the list to only the first pick manually, cos I was making a list and disabled all entries in the first call.
Used an additional 'Pick instance 0'.
Working now, cheers!