else
None.
This is used in combination with ifc or ifb. When if is true, processing runs until this instruction and then skips all instructions until the next endif. When if is false, processing skips from the if instruction to this one and then runs all instructions between this and endif.
You must include at least one instruction between ifb and else, between ifc and else, and between else and endif.
if ( src == true )
{
...
}
else
{
...
}
endif
ifb b0
...
else
...
endif
CONFIDENTIAL