标签: 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...... )无法解决它
tostring( math...... )
答案 0 :(得分:2)
发生错误是因为Tcolor或Fcolor中的一个是nil。 tonumber()抛出了错误。
Tcolor
Fcolor
nil
tonumber()
您可以看到它正在被复制here。