public static float Exp (float power);

Description

Возвращает е, возведенную в указанную степень.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { print(Mathf.Exp(6)); } }