Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Mathf.Sign

Cambiar al Manual
public static float Sign(float f);

Parámetros

Descripción

Devuelve el signo de f.

Return value is 1 when f is positive or zero, -1 when f is negative.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.Sign(-10)); Debug.Log(Mathf.Sign(10)); } }