From 3dad6d50845c4bbbee092e1a663ddba1e19fb068 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期五, 21 九月 2018 14:21:46 +0800
Subject: [PATCH] 3335 维护3d角色模型展示类型。
---
System/MainInterfacePanel/FeatureNoticeWin.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/System/MainInterfacePanel/FeatureNoticeWin.cs b/System/MainInterfacePanel/FeatureNoticeWin.cs
index 527e091..700562c 100644
--- a/System/MainInterfacePanel/FeatureNoticeWin.cs
+++ b/System/MainInterfacePanel/FeatureNoticeWin.cs
@@ -321,12 +321,12 @@
case (int)FeatureNoticeEnum.Pet:
m_RawImage1.gameObject.SetActive(true);
var npcConfig = Config.Instance.Get<NPCConfig>(50106001);
- UI3DModelExhibition.Instance.BeginShowNPC(50106001, npcConfig.UIModeLOffset, npcConfig.UIModelRotation, m_RawImage1);
+ UI3DModelExhibition.Instance.ShowNPC(50106001, npcConfig.UIModeLOffset, npcConfig.UIModelRotation, m_RawImage1);
break;
case (int)FeatureNoticeEnum.Horse:
m_RawImage2.gameObject.SetActive(true);
HorseConfig _model = Config.Instance.Get<HorseConfig>(100);
- UI3DModelExhibition.Instance.BeginShowHourse(_model.Model, m_RawImage2);
+ UI3DModelExhibition.Instance.ShowHourse(_model.Model, m_RawImage2);
break;
case (int)FeatureNoticeEnum.Wing:
m_RawImage3.gameObject.SetActive(true);
@@ -336,13 +336,13 @@
{
var config = Config.Instance.Get<WingRefineExpConfig>(3711);
int _modelID = config.Model;
- UI3DModelExhibition.Instance.BeginShowWing(_modelID, vec3, m_RawImage3);
+ UI3DModelExhibition.Instance.ShowWing(_modelID, vec3, m_RawImage3);
}
else if (job == 2)
{
var config = Config.Instance.Get<WingRefineExpConfig>(3721);
int _modelID = config.Model;
- UI3DModelExhibition.Instance.BeginShowWing(_modelID, vec3, m_RawImage3);
+ UI3DModelExhibition.Instance.ShowWing(_modelID, vec3, m_RawImage3);
}
break;
case (int)FeatureNoticeEnum.GossipFurnace:
--
Gitblit v1.8.0