Version: 2017.3

Mathf.IsPowerOfTwo

切换到手册
public static bool IsPowerOfTwo (int value);

描述

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.IsPowerOfTwo(7)); Debug.Log(Mathf.IsPowerOfTwo(32)); } }