Compares two floating point values if they are similar.
if (Mathf.Approximately(1.0, 10.0/10.0)) print ("same");
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { if (Mathf.Approximately(1.0F, 10.0F / 10.0F)) print("same"); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: if Mathf.Approximately(1.0F, (10.0F / 10.0F)): print('same')