random number unity c# code example

Example 1: random number generator unity

int num = Random.Range(min, max);

Example 2: 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 3: unity random number

Random.Range(-10.0f, 10.0f);

Example 4: how to generate random number in unity

X = Random.Range(min, max);

Example 5: unity C# random number

public int number;

number = Random.Range(min, max);