From f1746010d1803896a785a0c19f1e871e68bdcbb4 Mon Sep 17 00:00:00 2001 From: wangzhenxing <1545929779@qq.com> Date: Mon, 4 Dec 2023 17:19:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BB=E8=A7=92=E7=AB=8B=E7=BB=98=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Battle/View/Unit/MonsterView.lua | 4 ++-- .../~Lua/Modules/Battle/View/Unit/PlayerView.lua | 4 ++-- Assets/ManagedResources/~Lua/Modules/Story/StoryManager.lua | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/MonsterView.lua b/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/MonsterView.lua index d4c717ccef..af24bb31d0 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/MonsterView.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/MonsterView.lua @@ -36,9 +36,9 @@ function MonsterView:onCreate(go, role, position, root) end if role.roleData.id == 20100 then if role.sex == ROLE_SEX.BOY then - self.livePath = "live2d_npc_boy" + self.livePath = "live2d_caomaolufei" else - self.livePath = "live2d_npc_girl" + self.livePath = "live2d_namei" end -- 确定是主角 self.isMainPlayer = true diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/PlayerView.lua b/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/PlayerView.lua index 13c191b65a..2e03651307 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/PlayerView.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/View/Unit/PlayerView.lua @@ -54,9 +54,9 @@ function PlayerView:onCreate(go, role, position, root) if self.roleId == 21061 then self.skinId = 0 if NameManager.roleSex == ROLE_SEX.BOY then - self.livePath = "live2d_npc_boy" + self.livePath = "live2d_caomaolufei" else - self.livePath = "live2d_npc_girl" + self.livePath = "live2d_namei" end else local live=HeroConfig[role.roleData.roleId].Live diff --git a/Assets/ManagedResources/~Lua/Modules/Story/StoryManager.lua b/Assets/ManagedResources/~Lua/Modules/Story/StoryManager.lua index e8c79a4ec8..d0599551ae 100644 --- a/Assets/ManagedResources/~Lua/Modules/Story/StoryManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Story/StoryManager.lua @@ -14,10 +14,10 @@ this.curAreaID = 0 local lastResName local lastLive2d --- 男主立绘 -this.boyRes = "live2d_npc_boy" +this.boyRes = "live2d_caomaolufei" --- 女主立绘 -this.bitchRes = "live2d_npc_girl" +this.bitchRes = "live2d_namei" function this.Initialize()