public static float Exp (float power);

描述

返回 e 的指定幂。

using UnityEngine;

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