September 2013
Beginner
292 pages
6h 19m
English
The if statements work by determining whether a condition inside a pair of parentheses is true or false.
LearningScript as shown in the next screenshot.
Here's the output in the Unity Console:

Code analysis:
bool theBearMadeBigPottyInTheWoods = true;
This Boolean variable is declared and assigned the value of true.
if( theBearMadeBigPottyInTheWoods)
An if statement to ...