Difference between revisions of "Lua:unpause"
Jump to navigation
Jump to search
(→Related Functions) |
m (Syntax Highlighting.) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Category:Lua]] | [[Category:Lua]] | ||
| − | '''function''' unpause() | + | {{CodeBox|'''function''' unpause()}} |
| − | + | Resumes the currently opened process if it was paused. | |
| + | {{LuaFunctionParametersNone}} | ||
| − | + | === Example === | |
| + | <syntaxhighlight lang="lua" line> | ||
| + | unpause() -- The target process resumes execution | ||
| + | </syntaxhighlight> | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| − | + | {{Process}} | |
| − | |||
Latest revision as of 19:16, 25 June 2026
Resumes the currently opened process if it was paused.
Function Parameters[edit]
<none>
Example[edit]
1 unpause() -- The target process resumes execution