What happened?
When turning of game_view_settings.show_controller_gui and then viewing a cutscene while Tips-And-Tricks is open can cause all GUIs to become unresponsive. Even the ESC menu can be opened but not interacted with at all.What did I expect?
Open Tips-And-Tricks, watch cutscene, finish cutscene, and still be able to interact with GUIs.Reproduction steps
- Start a new multiplayer world with no mods. It needs to be a multiplayer game so that the game doesn't pause while the Tips-And-Tricks is open
- Run the command below
- Open the Tips-And-Tricks window
- Wait and watch the beautiful cutscene
- Get stuck not being able to close Tips-And-Tricks or any other window.
- Force close Factorio
Code: Select all
/c
local player = game.players[1]
player.game_view_settings.show_controller_gui = false
script.on_nth_tick(5*60, function()
player.set_controller {
type = defines.controllers.cutscene,
waypoints =
{
{
position = {10, 10},
transition_time = 60*1,
zoom = 1,
time_to_wait = 0
},
},
start_position = {0, 0},
start_zoom = 1
}
end)