このページを含むバージョン:
このページを含まないバージョン:
f のアークサイン (サインの値が f になる、ラジアンで表された角度) を返します。
f
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Asin(0.5F)); } }