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 1038de9 commit a52d396Copy full SHA for a52d396
FloatModifier.cs
@@ -25,12 +25,12 @@ public override void Reset(GameObject o)
25
26
protected override float GetValue()
27
{
28
- return floatAccessor.GetValue();
+ return floatAccessor.Value;
29
}
30
31
protected override void SetValue(float value)
32
33
- floatAccessor.SetValue(value);
+ floatAccessor.Value = (value);
34
35
36
protected abstract float GetRawModifiedValue();
0 commit comments