修改字体突出问题

This commit is contained in:
wulongxiao 2024-11-27 01:56:41 +08:00
parent cac8fb3968
commit eb304aa9c8
2 changed files with 4 additions and 4 deletions

View File

@ -2682,10 +2682,10 @@ MonoBehaviour:
m_Calls: [] m_Calls: []
m_FontData: m_FontData:
m_Font: {fileID: 12800000, guid: 90da32bc22c40e945a7affac54576b5e, type: 3} m_Font: {fileID: 12800000, guid: 90da32bc22c40e945a7affac54576b5e, type: 3}
m_FontSize: 45 m_FontSize: 20
m_FontStyle: 0 m_FontStyle: 0
m_BestFit: 0 m_BestFit: 1
m_MinSize: 0 m_MinSize: 5
m_MaxSize: 50 m_MaxSize: 50
m_Alignment: 4 m_Alignment: 4
m_AlignByGeometry: 0 m_AlignByGeometry: 0

View File

@ -26,7 +26,7 @@ public class Scene_main_jiekou :Base
Debug.Log(_realPlayerInfo.data.nickName); Debug.Log(_realPlayerInfo.data.nickName);
Debug.Log(_realPlayerInfo.data.voluteCoin); Debug.Log(_realPlayerInfo.data.voluteCoin);
Debug.Log(_realPlayerInfo.data.beansCoin); Debug.Log(_realPlayerInfo.data.beansCoin);
_mainBTN.UpDatePlayer(_realPlayerInfo.data.nickName, _realPlayerInfo.data.voluteCoin.ToString(), _realPlayerInfo.data.beansCoin.ToString()); _mainBTN.UpDatePlayer(_realPlayerInfo.data.nickName, _realPlayerInfo.data.voluteCoin.ToString("f1")+"M", _realPlayerInfo.data.beansCoin.ToString("f1")+"M");
} }
async Task StartAsync() async Task StartAsync()
{ {