Version: 2017.1

Mathf.NextPowerOfTwo

Switch to Manual
public static int NextPowerOfTwo (int value);

Description

Возвращает значение следующей степени двойки.

using UnityEngine;
using System.Collections;

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