This commit is contained in:
2025-06-14 21:50:00 +08:00
parent bb59a8f4ac
commit cde651f0ff
9 changed files with 2085 additions and 1397 deletions
File diff suppressed because it is too large Load Diff
@@ -1271,7 +1271,7 @@ ScriptedImporter:
maxTextureSize: 16384
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 2
textureCompression: 0
compressionQuality: 50
forceMaximumCompressionQuality_BC6H_BC7: 0
crunchedCompression: 0
@@ -1986,7 +1986,7 @@ ScriptedImporter:
sharedRigPSDLayers: []
pSDLayerImportSetting: []
importFileNodeState: 1
platformSettingsDirtyTick: 638827587414253419
platformSettingsDirtyTick: 638855330835942087
spriteSizeExpandChanged: 0
generateGOHierarchy: 1
textureAssetName:
@@ -262,7 +262,7 @@ me: “火山:-老地方。” #line:03c8dd1
<<load_scene Clinic 1>>
<<set_time_of_day EnvironmentManager "night">>
<<fade_out 1>>
感谢游玩 爱与机器人维修技术 ,本次demo的体验流程已结束。
感谢游玩 爱与机器人维修技术 ,本次demo的体验流程已结束。 #line:0cd82d0
<<OpenEndMenu>>
// <<NextYarn>>
===
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -8361,7 +8361,7 @@ Transform:
m_GameObject: {fileID: 519420028}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: -10}
m_LocalPosition: {x: -30.29, y: 0, z: -10}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
+3 -3
View File
@@ -890,6 +890,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 1263973095}
- {fileID: 1928852255}
- {fileID: 5924190533061430499}
m_Father: {fileID: 1929645612}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -3217,14 +3218,14 @@ Transform:
m_GameObject: {fileID: 1928852254}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: -2.24, y: -0.33, z: 0}
m_LocalPosition: {x: -2.24, y: -0.32999992, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 243739496}
- {fileID: 143341168}
- {fileID: 2139974347}
m_Father: {fileID: 5924190533061430499}
m_Father: {fileID: 253395609}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1928852256
MonoBehaviour:
@@ -4509,7 +4510,6 @@ Transform:
- {fileID: 129647964801808281}
- {fileID: 9176668305076229203}
- {fileID: 1855525890014860020}
- {fileID: 1928852255}
m_Father: {fileID: 253395609}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &6086942936004952135
@@ -68,17 +68,6 @@ namespace AibisDream.FixSystem
heatMapController = transform.Find("HeatMapController").GetComponent<HeatMapController>();
}
// 初始化 BodyModules 列表
BodyModules = new List<BodyModule>();
if (_bodyModuleGroup != null)
{
BodyModules.AddRange(_bodyModuleGroup.GetComponentsInChildren<BodyModule>());
}
if (_headModuleGroup != null)
{
BodyModules.AddRange(_headModuleGroup.GetComponentsInChildren<BodyModule>());
}
FixSystemCenter.SystemDic.Register(this);
// 注册Camera
@@ -118,7 +107,7 @@ namespace AibisDream.FixSystem
{
continue; // 跳过不可用的模块
}
float tempDistance = Vector3.Distance(sourcePos, bodyModule.GetSocketPos());
if (tempDistance < closestDistance)
@@ -4,6 +4,7 @@ using System.Linq;
using AibisDream.Framework;
using AibisDream.Kit;
using AibisDream.Utility;
using DG.Tweening;
using Febucci.UI;
using TMPro;
using UnityEngine;
@@ -75,6 +76,11 @@ namespace AibisDream.FixSystem
ShowTitle(string.Empty);
}
public void ShowTaskPanel()
{
TaskScreen.transform.DOLocalMoveY(3.85f, 1f);
}
#endregion
#region
@@ -28,17 +28,21 @@ namespace AibisDream
}
[YarnCommand("task_moveIn")]
public static IEnumerator ShowTask()
public static void ShowTask()
{
Debug.LogWarning("task_moveIn 已废弃,请尽快删除");
yield break;
}
[YarnCommand("task_moveOut")]
public static IEnumerator HideTask()
public static void HideTask()
{
Debug.LogWarning("task_moveOut 已废弃,请尽快删除");
yield break;
}
[YarnCommand("task_moveOut")]
public static void ShowTaskPanel()
{
ScreenSystem.ShowTaskPanel();
}
}
}