Version: 2017.2
public static float Exp (float power);

Description

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

using UnityEngine;
using System.Collections;

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