stop_timer

Declaration

stop_timer (name: STRING)

Description

Stops the timer name. It does not reset the timer. To do that, call make_timer or delete_timer.

See Also

is_timer
start_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