From 53b5847f4ddde444a69032bd06664a56456304ae Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 14 一月 2026 19:14:21 +0800
Subject: [PATCH] 218 首充-客户端 支持立绘调大小
---
Main/System/FirstCharge/FirstChargeWin.cs | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Main/System/FirstCharge/FirstChargeWin.cs b/Main/System/FirstCharge/FirstChargeWin.cs
index 6f2c5fa..8a65f97 100644
--- a/Main/System/FirstCharge/FirstChargeWin.cs
+++ b/Main/System/FirstCharge/FirstChargeWin.cs
@@ -3,6 +3,7 @@
public class FirstChargeWin : FunctionsBaseWin
{
+ [SerializeField] float lhScale = 0.6f;
[SerializeField] ButtonEx btnClose;
[Header("鏍囩椤�")]
[SerializeField] TextEx[] txtTabTitles;
@@ -206,8 +207,8 @@
txtDesc.text = heroInfo.heroConfig.Desc;
imgCountry.SetSprite(HeroUIManager.Instance.GetCountryIconName(heroInfo.heroConfig.Country));
imgJob.SetSprite(HeroUIManager.Instance.GetJobIconName(heroInfo.heroConfig.Class));
- roleLhModel.Create(heroInfo.SkinID, 0.6f, motionName: "", isLh: true);
- roleLhModel.transform.localScale = new Vector3(0.6f, 0.6f, 0.6f);
+ roleLhModel.Create(heroInfo.SkinID, lhScale, motionName: "", isLh: true);
+ roleLhModel.transform.localScale = new Vector3(lhScale, lhScale, lhScale);
}
public void DisplayAward(int firstId)
--
Gitblit v1.8.0