September 2013
Beginner
292 pages
6h 19m
English
LearningScript as shown in the next screenshot.
Notice line 11 is using the AND operator, and line 16 is using the OR operator.
Here is the output you get in the Unity Console:

Code analysis:
bool theBearMadeBigPottyInTheWoods = true;
A bool variable is declared and assigned the value of true.
int temperature = 40;
An int variable is ...