Mathf.NextPowerOfTwo 下个2的幂

static function NextPowerOfTwo (value : int) : int

Description描述

Returns the next power of two value

返回下一个2的幂值。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		Debug.Log(Mathf.NextPowerOfTwo(7));
		Debug.Log(Mathf.NextPowerOfTwo(139));
	}
}
// prints 8
Debug.Log(Mathf.NextPowerOfTwo(7));

// prints 256
Debug.Log(Mathf.NextPowerOfTwo(139));
最后修改:2011年4月16日 Saturday 17:36

本脚本参考基于Unity 3.4.1f5

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