Mathf.IsPowerOfTwo
static function IsPowerOfTwo(value: int): bool;
Description

Returns true if the value is power of two.

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