预期的字符串,没有

时间:2013-09-16 21:11:03

标签: string lua numbers null

我有以下代码,它应该只打印一个数字,而是打印出上面提到的错误:

print(
  math.abs(
    tonumber(TColor, 16) -
    tonumber(FColor, 16)
  ) / 100 * (math.abs(minV - maxV) / 100 * curV) + tonumber(FColor, 16)
)

tostring( math...... )无法解决它

1 个答案:

答案 0 :(得分:2)

发生错误是因为TcolorFcolor中的一个是niltonumber()抛出了错误。

您可以看到它正在被复制here