Home »Core Concepts»Variables»Int Variables
Index

Int Variables

An Int Variable can store an integer/whole number {... -3, -2, -1, 0, 1, 2, 3 ...} 

Int Variables are good at representing properties with discrete values such as numberOfLives, coinCount, childIndex...

Int Variables are often used as counters in an FSM.

Examples