Random in unity code example
Example 1: random number generator unity
int num = Random.Range(min, max);
Example 2: unity random int
public int RanTimerHigh = 10;
public int RanTimerLow = 1;
void Start()
{
int RandomInt = Random.Range(RanTimerLow, RanTimerHigh);
}
Example 3: unity random float
float number = Random.Range(0.0f, 3.0f);
Example 4: unity random number
Random.Range(-10.0f, 10.0f);
Example 5: random in unity
int num = Random.Range(min, max);
float num2 = Random.Range(min, max);
Example 6: unity random
var RandomValue = UnityEngine.Random.Range(min,max);