start_timer

Declaration

start_timer (name: STRING)

Description

Starts the timer name. It does not reset the timer. To do that, call make_timer.

See Also

is_timer
stop_timer
timer functions
Timer_Manager

Example

script start_test is
  start_timer ('test')
end

script on_test_fired is
  stop_timer ('test')
end

script end_test is
  stop_timer ('test')
end