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