Returns e raised to the specified power.
print(Mathf.Exp(6));
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { print(Mathf.Exp(6)); }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): print(Mathf.Exp(6))