NextPowerOfTwo(int)
Returns the next power of two that is equal to, or greater than, the argument.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static int NextPowerOfTwo(int value)
Parameters
Returns
Type | Description |
|---|---|
| int |
Examples
using UnityEngine;public class ExampleClass : MonoBehaviour{ void Start() { //Prints 8 to the console Debug.Log(Mathf.NextPowerOfTwo(7)); //Prints 256 to the console Debug.Log(Mathf.NextPowerOfTwo(139)); //Prints 256 to the console Debug.Log(Mathf.NextPowerOfTwo(256)); }}