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.Ceil

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

Parameters

Description

Returns the smallest integer greater to or equal to f.

#pragma strict
// Prints 10
Debug.Log(Mathf.Ceil(10.0F));
// Prints 11
Debug.Log(Mathf.Ceil(10.2F));
// Prints 11
Debug.Log(Mathf.Ceil(10.7F));
// Prints -10
Debug.Log(Mathf.Ceil(-10.0F));
// Prints -10
Debug.Log(Mathf.Ceil(-10.2F));
// Prints -10
Debug.Log(Mathf.Ceil(-10.7F));