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

説明

fp 乗の値を返します。

using UnityEngine;

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