블로그는 나의 힘!
[ Programing ]/Lua Scirpt2022. 11. 10. 09:54

# tonumber() : 숫자 타입으로 변환.
EX) local nValue = tonumber( 10 )


# tostring() : 문자 타입으로 변환.
EX) local strValue = tostring( 10 )


# 실수 -> 정수로 (버림)
local nValue = math.floor( tonumber(10.10) )
-- Week Index
local nValue = math.floor( tonumber( (diffDays / 7) + 1) )

Posted by Mister_Q