Class Stopwatch
Version added: 14.4
Added in version 14.4
If necessary, instances of this class can be created by:
- Local variable:
- Global (see Script Structure about conventions for naming globals):
If necessary, instances of this class can be created by:
- Local variable:
local stw = LM.Stopwatch:new_local()- Global (see Script Structure about conventions for naming globals):
XX_stw = LM.Stopwatch:new()Methods of Stopwatch:
| Name | Returns | Description | Ver |
| ElapsedTime ElapsedTime() | real | Added in version 14.4 | 14.4 |
| IsRunning IsRunning() | bool | Added in version 14.4 | 14.4 |
| Pause Pause() | void | Added in version 14.4 | 14.4 |
| Resume Resume() | void | Added in version 14.4 | 14.4 |
| Start Start() | void | Added in version 14.4 | 14.4 |
| Stop Stop() | void | Added in version 14.4 | 14.4 |