Mathf.Approximatelystatic function Approximately (a : float, b : float) : booleanDescriptionCompares two floating point values if they are similar. Due to floating point imprecision it is not recommended to compare floats using the equal operator. eg. 1.0 == 10.0 / 10.0 might not return true.
JavaScript
if (Mathf.Approximately(1.0, 10.0/10.0)) using UnityEngine; import UnityEngine |
