Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Sign

Switch to Manual
public static function Sign(f: float): float;

Parameters

Description

Returns the sign of f.

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

	Debug.Log(Mathf.Sign(-10));
	Debug.Log(Mathf.Sign(10));