We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c3d75 commit 2586660Copy full SHA for 2586660
Runtime/Variables/FloatVariable.cs
@@ -12,7 +12,7 @@ public float Value
12
get => value;
13
set
14
{
15
- if (this.value != value)
+ if (!Mathf.Approximately(this.value,value) )
16
17
this.value = value;
18
if (onValueChanged != null)
0 commit comments