Version: 5.5
public static float Pow (float f, float p);

説明

fp 乗の値を返します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Pow(6, 1.8F)); } }