public static float Exp (float power);

描述

返回 e 的指定幂。

using UnityEngine;
using System.Collections;

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