forked from minetest-mods/technic
ui update
This commit is contained in:
parent
d300a54c65
commit
4a15b8504e
|
@ -357,27 +357,27 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||||
local pagemax = math.floor((unified_inventory.filtered_items_list_size[player_name]-1) / (80) + 1)
|
local pagemax = math.floor((unified_inventory.filtered_items_list_size[player_name]-1) / (80) + 1)
|
||||||
|
|
||||||
if fields.start_list then
|
if fields.start_list then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = 1
|
start_i = 1
|
||||||
end
|
end
|
||||||
if fields.rewind1 then
|
if fields.rewind1 then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = start_i - 1
|
start_i = start_i - 1
|
||||||
end
|
end
|
||||||
if fields.forward1 then
|
if fields.forward1 then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = start_i + 1
|
start_i = start_i + 1
|
||||||
end
|
end
|
||||||
if fields.rewind3 then
|
if fields.rewind3 then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = start_i - 3
|
start_i = start_i - 3
|
||||||
end
|
end
|
||||||
if fields.forward3 then
|
if fields.forward3 then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = start_i + 3
|
start_i = start_i + 3
|
||||||
end
|
end
|
||||||
if fields.end_list then
|
if fields.end_list then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
start_i = pagemax
|
start_i = pagemax
|
||||||
end
|
end
|
||||||
if start_i < 1 then
|
if start_i < 1 then
|
||||||
|
@ -397,7 +397,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||||
for i=0,80,1 do
|
for i=0,80,1 do
|
||||||
local button="item_button"..list_index
|
local button="item_button"..list_index
|
||||||
if fields[button] then
|
if fields[button] then
|
||||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
minetest.sound_play("click", {to_player=player_name, gain = 0.3})
|
||||||
if minetest.setting_getbool("creative_mode")==false then
|
if minetest.setting_getbool("creative_mode")==false then
|
||||||
unified_inventory.set_inventory_formspec(player, unified_inventory.get_formspec(player,"craftguide"))
|
unified_inventory.set_inventory_formspec(player, unified_inventory.get_formspec(player,"craftguide"))
|
||||||
page="craftguide"
|
page="craftguide"
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user