public static float Pow (float f, float p);

描述

返回 fp 次幂。

using UnityEngine;

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