| 12345678910111213141516171819202122232425 |
- return {
- tag = 'worldProperties',
- summary = 'Set the step count of the World.',
- description = [[
- Sets the step count of the World. The step count influences how many steps are taken during a
- call to `World:update`. A higher number of steps will be slower, but more accurate. The
- default step count is 20.
- ]],
- arguments = {
- steps = {
- type = 'number',
- description = 'The new step count.'
- }
- },
- returns = {},
- variants = {
- {
- arguments = { 'steps' },
- returns = {}
- }
- },
- related = {
- 'World:update'
- }
- }
|