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

Description

Возвращает f возведённое в степень p.

using UnityEngine;

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