Difference between revisions of "Os.sleep"
From ComputerCraft Wiki
m (moved Os.sleep( timeout ) to Os.sleep) |
|||
Line 5: | Line 5: | ||
|api=os | |api=os | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
− | |desc=Pauses the computer for a number of seconds | + | |desc=Pauses the computer for a number of seconds. Fractions of a second are supported, but only down to a game tick, or 1/20 of a second (0.05s). Times are rounded up to the next tick, so os.sleep(1.01) and os.sleep(1.05) both wait for 1.05 seconds. |
|examples= | |examples= | ||
{{Example | {{Example |
Revision as of 02:47, 21 September 2012
Function os.sleep | |
Pauses the computer for a number of seconds. Fractions of a second are supported, but only down to a game tick, or 1/20 of a second (0.05s). Times are rounded up to the next tick, so os.sleep(1.01) and os.sleep(1.05) both wait for 1.05 seconds. | |
Syntax | os.sleep(timeout) |
Returns | nil |
Part of | ComputerCraft |
API | os |
Examples
Example | |
Pause for 3 seconds | |
Code |
os.sleep( 3 ) |
You can also just use sleep( timeout )