Version: 2019.2
public static float Acos (float f);

Description

Возвращает арккосинус f - угол в радианах, косинус которого равен f.

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Acos(0.5f)); } }