Random.value 随机值

static var value : float

Description描述

Returns a random number between 0.0 [inclusive] and 1.0 [inclusive] (Read Only).

返回一个随机数,在0.0(包括)~1.0(包括)之间。(只读)

Both 0.0 and 1.0 may be returned by this function.

这个函数可以返回0.0和1.0的数。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(Random.value);
	}
}
// Prints something between 0 and 1
//打印值在0~1之间

print(Random.value);
最后修改:2011年1月19日 Wednesday 15:44

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。