Merge branch 'bugfix/art' into 'develop'
部分问题修改 See merge request aibis-dream/aibis-dream!309
This commit is contained in:
@@ -15,8 +15,8 @@ tags:
|
||||
colorID: 8
|
||||
position: 0,200
|
||||
---
|
||||
<<show_tv_scene 1>>
|
||||
<<switch_tv 黑屏>>
|
||||
// <<show_tv_scene 1>>
|
||||
// <<switch_tv 黑屏>>
|
||||
<<init_character "佩佩最新">>
|
||||
<<switch_character_state 低头不爽>>
|
||||
<<hide_character>>
|
||||
@@ -58,7 +58,7 @@ colorID: 8
|
||||
position: 0,400
|
||||
---
|
||||
|
||||
<<indoor_new 1>>
|
||||
// <<indoor_new 1>>
|
||||
|
||||
yingli_novoice: 我不希望就因为你的这个怪病,而让我们部门的评价受到影响。
|
||||
peipei_novoice: 我没病,组长…我只是自己没发现……<br>…我会注意的。我会完成得很好的…相信我。
|
||||
|
||||
@@ -187,7 +187,7 @@ LiverModule: 处理机体的冷却液循环与净化,保障各模块运行状
|
||||
title: 刻录
|
||||
position: 728,79
|
||||
---
|
||||
|
||||
<<hide_dialog>>
|
||||
<<switch_fix_system_to "Gear" "stone_day2_1.json">>
|
||||
<<set $engineProblemKnown = true>>
|
||||
<<open_gear_cover>>
|
||||
|
||||
@@ -3,7 +3,7 @@ tags:
|
||||
position: 210,-342
|
||||
---
|
||||
<<hide_dialog>>
|
||||
<<indoor_new 1>>
|
||||
// <<indoor_new 1>>
|
||||
<<fade_in 1>>
|
||||
<<jump 检查初始化_头部>>
|
||||
===
|
||||
@@ -91,7 +91,7 @@ group:插线检查
|
||||
position: -47,-3242
|
||||
---
|
||||
<<wait 0.1>>
|
||||
<<open_screen>>
|
||||
<<open_screen Emo>>
|
||||
Linking: 正在建立连接…
|
||||
<<wait 0.2>>
|
||||
EmoModule: 已与情绪模块建立连接!
|
||||
@@ -130,7 +130,7 @@ group:插线检查
|
||||
position: 194,-2880
|
||||
---
|
||||
<<wait 0.1>>
|
||||
<<open_screen>>
|
||||
<<open_screen Speak>>
|
||||
Linking: 正在建立连接…
|
||||
<<wait 0.2>>
|
||||
SpeakerModule: 已与表达模块建立连接!
|
||||
@@ -168,7 +168,7 @@ group:插线检查
|
||||
position: 428,-3246
|
||||
---
|
||||
<<wait 0.1>>
|
||||
<<open_screen>>
|
||||
<<open_screen Logic>>
|
||||
Linking: 正在建立连接…
|
||||
<<wait 0.2>>
|
||||
LogicModule: 已与逻辑处理模块建立连接!
|
||||
@@ -215,7 +215,7 @@ group:插线检查
|
||||
position: 195,-3243
|
||||
---
|
||||
<<wait 0.1>>
|
||||
<<open_screen>>
|
||||
<<open_screen Memory>>
|
||||
Linking: 正在建立连接…
|
||||
<<wait 0.2>>
|
||||
MemModule: 已与记忆模块建立连接!
|
||||
@@ -294,7 +294,7 @@ group:插线检查
|
||||
position: 435,-3043
|
||||
---
|
||||
<<wait 0.1>>
|
||||
<<open_screen>>
|
||||
<<open_screen Eye>>
|
||||
Linking: 正在建立连接…
|
||||
<<wait 0.2>>
|
||||
EyeModule: 已与视觉模块建立连接!
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using AibisDream.Framework;
|
||||
using UnityEngine;
|
||||
using Yarn.Unity;
|
||||
|
||||
namespace AibisDream
|
||||
@@ -27,16 +28,18 @@ namespace AibisDream
|
||||
EndMenu.Instance.OpenEndMenu();
|
||||
}
|
||||
|
||||
[Obsolete]
|
||||
[YarnCommand("switch_tv")]
|
||||
public static void SwitchTV(string picName)
|
||||
{
|
||||
MainUIController.Instance.SwitchTV(picName);
|
||||
Debug.Log("switch_tv 已废弃");
|
||||
}
|
||||
|
||||
[Obsolete]
|
||||
[YarnCommand("show_tv_scene")]
|
||||
public static void ShowTVScene(float duration)
|
||||
{
|
||||
MainUIController.Instance.TVFadeIn(duration);
|
||||
Debug.Log("show_tv_scene 已废弃");
|
||||
}
|
||||
|
||||
[YarnCommand("load_scene")]
|
||||
|
||||
@@ -63,14 +63,6 @@ namespace AibisDream
|
||||
characterGroup.SetActive(data.shown);
|
||||
}
|
||||
|
||||
public IEnumerator Indoor(float duration)
|
||||
{
|
||||
// 加载诊所场景
|
||||
gameObject.SetActive(true);
|
||||
// 开始界面淡出
|
||||
yield return MainUIController.Instance.TVFadeOutSync(duration);
|
||||
}
|
||||
|
||||
public IEnumerator Quit(float duration)
|
||||
{
|
||||
// 黑屏出现
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using AibisDream.FixSystem;
|
||||
using UnityEngine;
|
||||
using Yarn.Unity;
|
||||
@@ -9,12 +9,13 @@ namespace AibisDream
|
||||
public static class ClinicYarnCommand
|
||||
{
|
||||
private static ClinicSystem ClinicSystem => FixSystemCenter.SystemDic.Get<ClinicSystem>();
|
||||
private static CharacterViewer Character => ClinicSystem.character;
|
||||
|
||||
[Obsolete]
|
||||
[YarnCommand("indoor_new")]
|
||||
public static IEnumerator Indoor(float duration)
|
||||
{
|
||||
return ClinicSystem.Indoor(duration);
|
||||
Debug.Log("indoor 已废除");
|
||||
yield break;
|
||||
}
|
||||
|
||||
[YarnCommand("quit_clinic_new")]
|
||||
@@ -59,25 +60,33 @@ namespace AibisDream
|
||||
[YarnCommand("character_init_new")]
|
||||
public static IEnumerator CharacterInit(string characterName)
|
||||
{
|
||||
return Character.CharacterInit(characterName);
|
||||
// return Character.CharacterInit(characterName);
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
yield break;
|
||||
}
|
||||
|
||||
[YarnCommand("character_fade_in_new")]
|
||||
public static IEnumerator CharacterFadeIn()
|
||||
{
|
||||
return Character.CharacterFadeIn();
|
||||
// return Character.CharacterFadeIn();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
yield break;
|
||||
}
|
||||
|
||||
[YarnCommand("character_fade_out_new")]
|
||||
public static IEnumerator CharacterFadeOut()
|
||||
{
|
||||
return Character.CharacterFadeOut();
|
||||
// return Character.CharacterFadeOut();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
yield break;
|
||||
}
|
||||
|
||||
|
||||
[YarnCommand("character_show_new")]
|
||||
public static void CharacterShow(string characterName)
|
||||
{
|
||||
Character.CharacterShow(characterName);
|
||||
// Character.CharacterShow(characterName);
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
#endregion
|
||||
@@ -87,7 +96,8 @@ namespace AibisDream
|
||||
[YarnCommand("character_face_new")]
|
||||
public static void CharacterFace(string state)
|
||||
{
|
||||
Character.SwitchFace(state);
|
||||
// Character.SwitchFace(state);
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
[YarnCommand("character_eye_new")]
|
||||
@@ -107,31 +117,36 @@ namespace AibisDream
|
||||
[YarnCommand("character_pos")]
|
||||
public static void SwitchPos(string poseName)
|
||||
{
|
||||
Character.SwitchPose(poseName);
|
||||
// Character.SwitchPose(poseName);
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
[YarnCommand("character_auto_blink")]
|
||||
public static void AutoBlink()
|
||||
{
|
||||
Character.AutoBlink();
|
||||
// Character.AutoBlink();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
[YarnCommand("character_stop_auto_blink")]
|
||||
public static void StopAutoBlink()
|
||||
{
|
||||
Character.StopAutoBlink();
|
||||
// Character.StopAutoBlink();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
[YarnCommand("character_add_device")]
|
||||
public static void AddLinkDevice()
|
||||
{
|
||||
Character.AddLinkDevice();
|
||||
// Character.AddLinkDevice();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
[YarnCommand("character_remove_device")]
|
||||
public static void RemoveLinkDevice()
|
||||
{
|
||||
Character.RemoveLinkDevice();
|
||||
// Character.RemoveLinkDevice();
|
||||
Debug.Log("旧表情系统已废弃,请停止使用");
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -122,7 +122,6 @@ namespace AibisDream
|
||||
{
|
||||
yield return SceneLoader.Instance.UnloadSceneAsync();
|
||||
yield return MainUIController.Instance.FadeInSync(1);
|
||||
// yield return MainUIController.Instance.TVFadeInSync(1);
|
||||
yield return LoadClinicOut();
|
||||
MainUIController.Instance.ShowMainUI();
|
||||
StartMenu.Instance.showStartMenu();
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"shaftLevelDataArray":[{"shaftName":"Pluggable Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-1.232,"y":-0.319,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/唱片齿轮"},{"shaftName":"Pluggable Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.54,"y":-0.525,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮B"},{"shaftName":"Pluggable Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-1.861,"y":-0.922,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮C"},{"shaftName":"Driver Shaft","shaftType":0,"targetSpeed":0.0,"hasChildGear":true,"radius":0.49,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.263,"y":0.193,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮A"}],"panelShaftArray":[{"shaftName":"Panel Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.001,"y":1.123,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/唱片齿轮"},{"shaftName":"Panel Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":0.362,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"},{"shaftName":"Panel Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"NewGear","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-0.002,"y":-0.392,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮C"},{"shaftName":"Panel Shaft4","shaftType":2,"targetSpeed":0.0,"hasChildGear":false,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":-1.273,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"}]}
|
||||
{"shaftLevelDataArray":[{"shaftName":"Pluggable Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-1.232,"y":-0.319,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/唱片齿轮"},{"shaftName":"Pluggable Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.54,"y":-0.525,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮B"},{"shaftName":"Pluggable Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-1.861,"y":-0.922,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮C"},{"shaftName":"Driver Shaft","shaftType":0,"targetSpeed":0.0,"hasChildGear":true,"radius":0.49,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.263,"y":0.193,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮A"}],"panelShaftArray":[{"shaftName":"Panel Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.001,"y":1.123,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/刻录齿轮"},{"shaftName":"Panel Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":0.362,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"},{"shaftName":"Panel Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"NewGear","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-0.002,"y":-0.392,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮C"},{"shaftName":"Panel Shaft4","shaftType":2,"targetSpeed":0.0,"hasChildGear":false,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":-1.273,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"}]}
|
||||
@@ -1 +1 @@
|
||||
{"shaftLevelDataArray":[{"shaftName":"Pluggable Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-1.232,"y":-0.319,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/唱片齿轮"},{"shaftName":"Pluggable Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.54,"y":-0.525,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮B"},{"shaftName":"Pluggable Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-1.861,"y":-0.922,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮C"},{"shaftName":"Driver Shaft","shaftType":0,"targetSpeed":0.0,"hasChildGear":true,"radius":0.49,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.263,"y":0.193,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/普通齿轮A"}],"panelShaftArray":[{"shaftName":"Panel Shaft1","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.001,"y":1.123,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/唱片齿轮"},{"shaftName":"Panel Shaft2","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"NewGear","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":0.362,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"},{"shaftName":"Panel Shaft3","shaftType":2,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"NewGear","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-0.002,"y":-0.392,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮C"},{"shaftName":"Panel Shaft4","shaftType":2,"targetSpeed":0.0,"hasChildGear":false,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-0.006,"y":-1.273,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"}]}
|
||||
{"shaftLevelDataArray":[{"shaftName":"Pluggable Shaft3","shaftType":3,"targetSpeed":0.0,"hasChildGear":true,"radius":0.4,"gearProp":"","isGearBroken":false,"isDisc":true,"discIdx":0,"shaftPos":{"x":-1.232,"y":-0.319,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/刻录齿轮"},{"shaftName":"Pluggable Shaft2","shaftType":3,"targetSpeed":0.0,"hasChildGear":true,"radius":0.3,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.54,"y":-0.525,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮B"},{"shaftName":"Pluggable Shaft1","shaftType":3,"targetSpeed":0.0,"hasChildGear":true,"radius":0.5,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-1.861,"y":-0.922,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮C"},{"shaftName":"Driver Shaft","shaftType":0,"targetSpeed":0.0,"hasChildGear":true,"radius":0.49,"gearProp":"","isGearBroken":false,"isDisc":false,"discIdx":0,"shaftPos":{"x":-2.263,"y":0.193,"z":0.0},"gearPicPath":"Art/Fix/变速箱齿轮/镍铬齿轮A"}],"panelShaftArray":[]}
|
||||
Reference in New Issue
Block a user