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

スクリプト言語

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

Mathf.Abs

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function Abs(f: float): float;
public static float Abs(float f);
public static def Abs(f as float) as float

Description

Returns the absolute value of f.

	// prints 10.5
	print(Mathf.Abs(-10.5));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        print(Mathf.Abs(-10.5F));
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		print(Mathf.Abs(-10.5F))

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

Description

Returns the absolute value of value.

	// prints 10
	print(Mathf.Abs(-10));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        print(Mathf.Abs(-10));
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		print(Mathf.Abs(-10))