public static float Exp (float power);

설명

Returns e raised to the specified power.

using UnityEngine;
using System.Collections;

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