|
@@ -49,14 +49,28 @@ namespace ET.Client
|
|
|
{
|
|
|
protected override async ETTask OnEvent(CameraPlaybleEvent a)
|
|
|
{
|
|
|
+ bool flag = GlobalViewMgr.Instance.HeadbarView.visible;
|
|
|
+ if (flag)
|
|
|
+ {
|
|
|
+ GlobalViewMgr.Instance.HeadbarView.visible = false;
|
|
|
+ }
|
|
|
await PlayTimeline(a.Playable, () =>
|
|
|
{
|
|
|
- if(a.Playable == "Camera1_2")
|
|
|
+ if (flag)
|
|
|
+ {
|
|
|
+ GlobalViewMgr.Instance.HeadbarView.visible = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (a.Playable == "Camera1_2")
|
|
|
{
|
|
|
+ var light = GameObject.Find("/Light");
|
|
|
+ light.transform.rotation = Quaternion.Euler(0, 225, 0);
|
|
|
EventSystem.Instance.Publish(BattleFunc.Clone((int)BattleFunc.FUNC.Start2));
|
|
|
}
|
|
|
else if (a.Playable == "Camera2_3")
|
|
|
{
|
|
|
+ var light = GameObject.Find("/Light");
|
|
|
+ light.transform.rotation = Quaternion.Euler(0, 178, 0);
|
|
|
EventSystem.Instance.Publish(BattleFunc.Clone((int)BattleFunc.FUNC.Start3));
|
|
|
}
|
|
|
});
|