public static bool IsPowerOfTwo (int value);

描述

如果值是 2 的幂,则返回 true。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // prints false Debug.Log(Mathf.IsPowerOfTwo(7));

// prints true Debug.Log(Mathf.IsPowerOfTwo(32)); } }