Difference between revisions of "DCS func getTime"

From DCS World Wiki - Hoggitworld.com
m (1 revision imported)
 
Line 13: Line 13:
 
|par4=
 
|par4=
  
|desc= Returns the model time in seconds. This counts time once the simulator loads. So if a mission is paused, the time this function returns still moves forward.
+
|desc= Returns the model time in seconds to 3 decimal places. This counts time once the simulator loads. So if a mission is paused, the time this function returns still moves forward.
  
 
|rtnType= time
 
|rtnType= time
  
|rtnExample= none
+
|rtnExample= 65.385
  
 
|reqType1=  
 
|reqType1=  

Revision as of 07:02, 26 April 2019

Scripting Root

Envrioment: Mission Scripting
Function: getTime Added with: 1.2.0
Member Of: timer
Syntax: time timer.getTime( )
Description: Returns the model time in seconds to 3 decimal places. This counts time once the simulator loads. So if a mission is paused, the time this function returns still moves forward.


Return Value: time
Return Example: 65.385
Examples: if timer.getTime() > 20 then
 doWhatever()
end
Related Functions: timerfunctions: getTime, getAbsTime,getTime0, scheduleFunction, removeFunction, setFunctionTime
Notes: