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

スクリプト言語

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

Mathf.FloorToInt

public static function FloorToInt(f: float): int;

Description

Returns the largest integer smaller to or equal to f.

	// Prints 10
	Debug.Log(Mathf.FloorToInt(10.0));
	// Prints 10
	Debug.Log(Mathf.FloorToInt(10.2));
	// Prints 10
	Debug.Log(Mathf.FloorToInt(10.7));
	// Prints -10
	Debug.Log(Mathf.FloorToInt(-10.0));
	// Prints -11
	Debug.Log(Mathf.FloorToInt(-10.2));
	// Prints -11
	Debug.Log(Mathf.FloorToInt(-10.7));