Возвращает знак f
.
Возвращает 1, когда f
положительное или ноль, и -1, когда f
отрицательное.
Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10));
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } }