Versions with this page:
Versions without this page:
Returns e raised to the specified power.
using UnityEngine;public class Example : MonoBehaviour { void Start() { print(Mathf.Exp(6)); } }