Version: 2021.3
언어: 한국어

Mathf.Approximately

매뉴얼로 전환
public static bool Approximately (float a, float b);

설명

Compares two floating point values and returns true if they are similar.

Floating point imprecision makes comparing floats using the equals operator inaccurate. For example, (1.0 == 10.0 / 10.0) might not return true every time. Approximately() compares two floats and returns true if they are within a small value (Epsilon) of each other.

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { if (Mathf.Approximately(1.0f, 10.0f / 10.0f)) { print("The values are approximately the same"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961