I have an if statement that has several ored arguments. I have stacked them vertically as below for readability.
if
or
if (health.fla
Not directly, but you can achieve something like it with BreakBeforeBinaryOperators. Try setting this value to NonAssignment. This will put your || operators before each additional condition, though, not after them.
BreakBeforeBinaryOperators
NonAssignment
||