lua_api.txt: Various additions and improvements (#8245)

This commit is contained in:
Paramat 2019-02-17 02:52:53 +00:00 committed by GitHub
parent 291b2446f1
commit 00a22ec76d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 5 deletions

View File

@ -847,7 +847,10 @@ Examples of sound parameter tables:
} }
Looped sounds must either be connected to an object or played locationless to Looped sounds must either be connected to an object or played locationless to
one player using `to_player = name,` one player using `to_player = name,`.
A positional sound will only be heard by players that are within
`max_hear_distance` of the sound position, at the start of the sound.
`SimpleSoundSpec` `SimpleSoundSpec`
----------------- -----------------
@ -1184,9 +1187,10 @@ is drawn.
`0` draws from left to right, `1` draws from right to left, `2` draws from `0` draws from left to right, `1` draws from right to left, `2` draws from
top to bottom, and `3` draws from bottom to top. top to bottom, and `3` draws from bottom to top.
The `alignment` field specifies how the item will be aligned. It ranges from The `alignment` field specifies how the item will be aligned. It is a table
`-1` to `1`, with `0` being the center. `-1` is moved to the left/up, and `1` where `x` and `y` range from `-1` to `1`, with `0` being central. `-1` is
is to the right/down. Fractional values can be used. moved to the left/up, and `1` is to the right/down. Fractional values can be
used.
The `offset` field specifies a pixel offset from the position. Contrary to The `offset` field specifies a pixel offset from the position. Contrary to
position, the offset is not scaled to screen size. This allows for some position, the offset is not scaled to screen size. This allows for some
@ -3145,6 +3149,9 @@ Methods
`minetest.get_mapgen_object`. `minetest.get_mapgen_object`.
* (`p1`, `p2`) is the area in which lighting is set, defaults to the whole * (`p1`, `p2`) is the area in which lighting is set, defaults to the whole
area if left out or nil. area if left out or nil.
* Setting `p1`, `p2` to `emin`, `emax` of the mapgen object voxelmanip (the
entire volume of the voxelmanip: the mapchunk plus a 1 mapblock thick
shell around it) will cause an error.
* `propagate_shadow` is an optional boolean deciding whether shadows in a * `propagate_shadow` is an optional boolean deciding whether shadows in a
generated mapchunk above are propagated down into the mapchunk, defaults generated mapchunk above are propagated down into the mapchunk, defaults
to `true` if left out. to `true` if left out.
@ -3517,6 +3524,7 @@ Call these functions only at load time!
* `minetest.register_alias_force(name, convert_to)` * `minetest.register_alias_force(name, convert_to)`
* `minetest.register_ore(ore definition)` * `minetest.register_ore(ore definition)`
* Returns an integer uniquely identifying the registered ore on success. * Returns an integer uniquely identifying the registered ore on success.
* The order of ore registrations determines the order of ore generation.
* `minetest.register_biome(biome definition)` * `minetest.register_biome(biome definition)`
* Returns an integer uniquely identifying the registered biome on success. * Returns an integer uniquely identifying the registered biome on success.
* `minetest.unregister_biome(name)` * `minetest.unregister_biome(name)`
@ -3525,6 +3533,8 @@ Call these functions only at load time!
* `minetest.register_decoration(decoration definition)` * `minetest.register_decoration(decoration definition)`
* Returns an integer uniquely identifying the registered decoration on * Returns an integer uniquely identifying the registered decoration on
success. success.
* The order of decoration registrations determines the order of decoration
generation.
* `minetest.register_schematic(schematic definition)` * `minetest.register_schematic(schematic definition)`
* Returns an integer uniquely identifying the registered schematic on * Returns an integer uniquely identifying the registered schematic on
success. success.
@ -5498,7 +5508,7 @@ Used by `ObjectRef` methods. Part of an Entity definition.
textures = {}, textures = {},
-- Number of required textures depends on visual. -- Number of required textures depends on visual.
-- "cube" uses 6 textures in the way a node does. -- "cube" uses 6 textures just like a node, but all 6 must be defined.
-- "sprite" uses 1 texture. -- "sprite" uses 1 texture.
-- "upright_sprite" uses 2 textures: {front, back}. -- "upright_sprite" uses 2 textures: {front, back}.
-- "wielditem" expects 'textures = {itemname}' (see 'visual' above). -- "wielditem" expects 'textures = {itemname}' (see 'visual' above).