patch: add transition speed patch

This commit is contained in:
Ramen2X 2023-01-11 19:51:22 -05:00
parent 947946fa0a
commit 375b8cbd4a
2 changed files with 6 additions and 0 deletions

View file

@ -754,5 +754,7 @@ MxResult MxTransitionManager::InterceptStartTransition(TransitionType animationT
animationType = WINDOW;
}
speed = config.GetInt(_T("TransitionSpeed"));
return (this->*startTransitionOriginal)(animationType, speed, unk, playMusicInTransition);
}

View file

@ -192,6 +192,10 @@ PatchGrid::PatchGrid()
"Change LEGO Island's transition animation.",
AddComboItem(sectionGraphics, "Transition Type", animationList, 2));
AddPatch("TransitionSpeed",
"Sets the speed of LEGO Island's transition animations.\n\n(50 = default; lower = faster, higher = slower)",
AddIntegerItem(sectionGraphics, "Transition Speed", 50));
AddPatch("FOVMultiplier",
"Globally adjusts the field of view by a multiplier\n\n"
"1.0 = Default (greater than 1.0 is zoomed in, less than 1.0 is zoomed out)",