mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Update game_api.txt
This commit is contained in:
parent
a06dd4d932
commit
e6cb0fdfcf
1 changed files with 5 additions and 5 deletions
|
@ -226,8 +226,9 @@ The doors mod allows modders to register custom doors and trapdoors.
|
||||||
sound_open = sound play for open door, -- optional
|
sound_open = sound play for open door, -- optional
|
||||||
sound_close = sound play for close door, -- optional
|
sound_close = sound play for close door, -- optional
|
||||||
protected = false, -- If true, only placer can open the door (locked for others)
|
protected = false, -- If true, only placer can open the door (locked for others)
|
||||||
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing),
|
||||||
-- optional function containing the on_rightclick callback, defaults to a doors.door_toggle-wrapper
|
-- optional function containing the on_rightclick callback, defaults to a doors.door_toggle-wrapper
|
||||||
|
use_texture_alpha = "clip",
|
||||||
|
|
||||||
### Trapdoor definition
|
### Trapdoor definition
|
||||||
|
|
||||||
|
@ -245,10 +246,9 @@ The doors mod allows modders to register custom doors and trapdoors.
|
||||||
sound_open = sound play for open door, -- optional
|
sound_open = sound play for open door, -- optional
|
||||||
sound_close = sound play for close door, -- optional
|
sound_close = sound play for close door, -- optional
|
||||||
protected = false, -- If true, only placer can open the door (locked for others)
|
protected = false, -- If true, only placer can open the door (locked for others)
|
||||||
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) ,
|
||||||
-- function containing the on_rightclick callback
|
|
||||||
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
|
||||||
-- function containing the on_rightclick callback
|
-- function containing the on_rightclick callback
|
||||||
|
use_texture_alpha = "clip",
|
||||||
|
|
||||||
### Fence gate definition
|
### Fence gate definition
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue