1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00

Timing tweaks for the new strings.

This commit is contained in:
Zahir Khan 2019-11-18 18:47:07 -05:00 committed by Zahir
parent 46ccb4c277
commit 99a7657681

View File

@ -105,7 +105,7 @@ local function cutscene_function_redmew(player_index, waypoint_index, params)
draw_text_auto_replacing(tick, settings, {x = 0, y = 18}, {{'crashsite.cutscene1_case2_line1'}}, player, {scale = 2.5}, true, false, 300) draw_text_auto_replacing(tick, settings, {x = 0, y = 18}, {{'crashsite.cutscene1_case2_line1'}}, player, {scale = 2.5}, true, false, 300)
end end
cases[3] = function() cases[3] = function()
draw_text_auto_replacing(tick, settings, {x = 0, y = 18}, {{'crashsite.cutscene1_case3_line1'}}, player, {scale = 3}, true, false, 300) draw_text_auto_replacing(tick, settings, {x = 0, y = 18}, {{'crashsite.cutscene1_case3_line1'}}, player, {scale = 3}, true, false, 400)
end end
local case = cases[waypoint_index] local case = cases[waypoint_index]
if case then if case then
@ -145,9 +145,9 @@ local waypoints_redmew = {
{ {
-- case 3 -- case 3
position = {x = 0, y = 0}, position = {x = 0, y = 0},
transition_time = 60, transition_time = 90,
time_to_wait = 120, time_to_wait = 400,
zoom = 0.7 zoom = 0.2
} }
} }