言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Mathf.Sign

public static function Sign(f: float): float;

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));