This commit is contained in:
Not Officer
2021-11-03 22:24:26 +01:00
parent d244717ce6
commit 9bb0d1d40b
2 changed files with 3 additions and 3 deletions

View File

@@ -145,7 +145,7 @@ namespace FModel.Creator.Bases.FN
curveTable.TryGetCurveTableRow(rowName.Text, StringComparison.OrdinalIgnoreCase, out var rowValue) &&
rowValue.TryGetValue(out FSimpleCurveKey[] keys, "Keys") && keys.Length > 0)
{
statValue = keys[0].KeyValue;
statValue = keys[0].Value;
return true;
}
@@ -278,4 +278,4 @@ namespace FModel.Creator.Bases.FN
c.DrawRect(new SKRect(height * 2, y, Math.Min(height * 2 + sliderWidth, sliderRight), y + 5), _statPaint);
}
}
}
}