1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 14:13:31 +08:00

work in progress

This commit is contained in:
2025-04-23 02:49:59 +08:00
parent 996a57130c
commit 1ae4aa3ecb
6 changed files with 67 additions and 55 deletions

View File

@@ -233,11 +233,18 @@ public class UXAssist : BaseUnityPlugin, IModCanSave
private void Update()
{
if (DSPGame.IsMenuDemo)
{
if (VFInput.inputing) return;
UIFunctions.OnInputUpdate();
return;
}
LogisticsPatch.OnUpdate();
if (VFInput.inputing) return;
UIFunctions.OnUpdate();
GamePatch.OnUpdate();
FactoryPatch.OnUpdate();
PlayerPatch.OnUpdate();
LogisticsPatch.OnInputUpdate();
UIFunctions.OnInputUpdate();
GamePatch.OnInputUpdate();
FactoryPatch.OnInputUpdate();
PlayerPatch.OnInputUpdate();
}
}