冷却器表现添加,进入手术室timeline添加,其他表现优化

This commit is contained in:
2025-02-14 18:16:22 +08:00
parent e07cbb7a64
commit 877ec0627f
39 changed files with 3705 additions and 149 deletions
@@ -105,9 +105,12 @@ namespace AibisDream.FixSystem
public IEnumerator Enter()
{
var bodyModuleSystem = FixSystemCenter.SystemDic.Get<BodyModuleSystem>();
// 拔出插头
bodyModuleSystem.ResetPlug();
// 切换相机
yield return CameraKit.Instance.SwitchCamera(CameraEnum.CoolingMachine);
yield return TimelineManager.Instance.PlayTimeline("ToBodyModule");
yield return CameraKit.Instance.SwitchCamera(CameraEnum.BodyModule);
// 开启交互
bodyModuleSystem.EnableSystem();
@@ -276,7 +279,7 @@ namespace AibisDream.FixSystem
public IEnumerator Enter()
{
float duration = 0.5f;
//float duration = 0.5f;
var bodyModuleSystem = FixSystemCenter.SystemDic.Get<BodyModuleSystem>();
var eyeSystem = FixSystemCenter.SystemDic.Get<EyeSystem>();
// 先切BodyModule
@@ -349,6 +352,7 @@ namespace AibisDream.FixSystem
memorySystem.OnExit();
memorySystem.CloseMemoryView();
yield return MainUIController.Instance.FadeOutSync(duration);
yield return CameraKit.Instance.SwitchCamera(CameraEnum.BodyModule);
memorySystem.PullMemoryProjector();
}
}