이 페이지가 있는 버전:
이 페이지가 없는 버전:
Returns the arc-sine of f - the angle in radians whose sine is f.
f
using UnityEngine;public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Asin(0.5f)); } }