05-30-2015, 05:42 PM
(This post was last modified: 05-30-2015, 05:42 PM by Simbax.
Edit Reason: impruf mi english
)
If a scene file is created by a human, then use true/false, if a scene file is created by an editor, then use 1/0. It doesn't really matter, though. It's the same situation as with some guys preferring to write code like that:
or like that:
I have a question if does it work the following way: 0 is false, any other value is true?
Code:
void f() {
return;
}
or like that:
Code:
void f()
{
return;
}
I have a question if does it work the following way: 0 is false, any other value is true?