unity random int code example
Example 1: unity random int
//If you use Int in the Random.Range() then it will
//return an Int
public int RanTimerHigh = 10;
public int RanTimerLow = 1;
void Start()
{
int RandomInt = Random.Range(RanTimerLow, RanTimerHigh);
}
Example 2: unity random float
// To get a random float between two values:
float number = Random.Range(0.0f, 3.0f);
Example 3: unity random
var RandomValue = UnityEngine.Random.Range(min,max);
Example 4: unity random number
Random.Range(-10.0f, 10.0f);