Hi there,
I have this:
- Press a button
-- Is the boolean true?
--- Do a thing
--- Make boolean false
-- Is the boolean false?
--- Do a thing
--- Make Boolean true.
Now, of course, the boolean switch in one will feed through to the next part of the condition, meaning that both parts always get executed (even if the order is reversed).
In C# and similar you'd use 'return' or similar to just exit the if statement.
How do I get round this in C3? I know it's simple, but I've been bashing my head against a brick wall for ages now trying to solve it.
I also tried childing/unchilding objects, but this didn't work either.