Version: 2017.2
public static float Asin (float f);

설명

Returns the arc-sine of f - the angle in radians whose sine is f.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Asin(0.5F)); } }