Difference between revisions of "love.timer.getTime (한국어)"

(Created page with "불명확한 시작 시간으로부터 현재까지의 소요 시간을 구합니다. Returns the value of a timer with an unspecified starting time. This function should only be...")
 
m
Line 26: Line 26:
 
== 다른 언어 ==
 
== 다른 언어 ==
 
* [[parent::love.timer (한국어)]]
 
* [[parent::love.timer (한국어)]]
* [[love.timer.getMicroTime (한국어)]]
 
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=불명확한 시작 시간으로부터 현재까지의 소요 시간을 구합니다.}}
 
{{#set:Description=불명확한 시작 시간으로부터 현재까지의 소요 시간을 구합니다.}}

Revision as of 12:28, 13 January 2014

불명확한 시작 시간으로부터 현재까지의 소요 시간을 구합니다. Returns the value of a timer with an unspecified starting time. This function should only be used to calculate differences between points in time, as the starting time of the timer is unknown.

함수

형식

time = love.timer.getTime( )

매개변수

없음.

리턴값

number (한국어) time
소요 시간(초 단위).

예제

어떤 일을 하는 데 얼마나 오랜 시간이 소요되었나 확인

foo = ""
local stime = love.timer.getTime()

for i=1,1000 do
	foo = foo .. "bar"
end

local etime = love.timer.getTime()
print(string.format("It took %.3f milliseconds to concatenate 'bar' 1000 times!", 1000 * (etime - stime)))

다른 언어


다른 언어