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

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

Parameters

Description

Returns the absolute value of f.

	// prints 10.5
	print(Mathf.Abs(-10.5));

public static function Abs(value: int): int;

Parameters

Description

Returns the absolute value of value.

	// prints 10
	print(Mathf.Abs(-10));