Mathf.IsPowerOfTwo

static function IsPowerOfTwo (value : int) : boolean

Description

Returns true if the value is power of two.

JavaScript
    // prints false
Debug.Log(Mathf.IsPowerOfTwo(7));

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