Files
factorio-mod-PHI-CL/PHI-CL/control/editor.lua
T
2026-07-03 16:00:48 +09:00

32 lines
794 B
Lua

local main = {}
function main.toggle(event)
if event.prototype_name ~= 'phi-cl-toggle-editor' then
return
end
if not event.player_index then
return
end
local player = game.players[event.player_index]
if not player then
return
end
player.toggle_map_editor()
end
function main.toggle_editor(event)
local player = game.players[event.player_index]
player.set_shortcut_toggled('phi-cl-toggle-editor', player.physical_controller_type == defines.controllers.editor)
game.tick_paused = false
end
function main.available(player)
player.set_shortcut_available('phi-cl-toggle-editor', player.admin and player.permission_group and player.permission_group.allows_action(defines.input_action.toggle_map_editor))
end
return main