方法介绍
方法名称:向下取整
语法:math.floor(number)
参数说明:number可以是任意数值表达式
返回值
整数型:返回不大于number的最大整数
方法例子
local ret = math.floor(0.5)
print(ret)