나머지 수정 사항 적용
This commit is contained in:
parent
b65706e591
commit
d1b7705828
Binary file not shown.
|
|
@ -310,7 +310,8 @@ public class HorseRushPanel : AddrHandleBase
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
DEFAULT_FEVER_COUNT = 20;
|
DEFAULT_FEVER_COUNT = 20;
|
||||||
#endif
|
#endif
|
||||||
FEVER_TIME = SaveMgr.Ins.IsInfinityMiniGame() ? 16f : 8f;
|
var ftime = table_GlobalValue.Ins.Get_Float("MiniGame_FeverTime");
|
||||||
|
FEVER_TIME = SaveMgr.Ins.IsInfinityMiniGame() ? ftime * 2f : ftime;
|
||||||
|
|
||||||
// UI 초기화
|
// UI 초기화
|
||||||
_combo.SetActive(false);
|
_combo.SetActive(false);
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ public class LobbyUI : MonoBehaviourSingletonTemplate<LobbyUI>
|
||||||
if (!SaveMgr.Ins.IsInfinityMiniGame())
|
if (!SaveMgr.Ins.IsInfinityMiniGame())
|
||||||
{
|
{
|
||||||
SaveMgr.Ins.Add_Money(eMoney.MiniGameHP);
|
SaveMgr.Ins.Add_Money(eMoney.MiniGameHP);
|
||||||
m_ToastUI.Set($"생명력이 충전되었습니다.");
|
m_ToastUI.Set($"미니게임 입장 기회가 충전되었습니다.");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
SaveMgr.Ins.Set_Money(eMoney.MiniGameHP, table_GlobalValue.Ins.Get_Int("MiniGame_TotalEnterMoney"));
|
SaveMgr.Ins.Set_Money(eMoney.MiniGameHP, table_GlobalValue.Ins.Get_Int("MiniGame_TotalEnterMoney"));
|
||||||
|
|
@ -193,7 +193,7 @@ public class LobbyUI : MonoBehaviourSingletonTemplate<LobbyUI>
|
||||||
{
|
{
|
||||||
SaveMgr.Ins.Set_Money(eMoney.MiniGameHP, table_GlobalValue.Ins.Get_Int("MiniGame_TotalEnterMoney"));
|
SaveMgr.Ins.Set_Money(eMoney.MiniGameHP, table_GlobalValue.Ins.Get_Int("MiniGame_TotalEnterMoney"));
|
||||||
SaveMgr.Ins.Save();
|
SaveMgr.Ins.Save();
|
||||||
m_ToastUI.Set("생명력이 모두 충전되었습니다.");
|
m_ToastUI.Set("미니게임 입장 기회가 모두 충전되었습니다.");
|
||||||
minigamechargingTime = 0f;
|
minigamechargingTime = 0f;
|
||||||
Check_MiniGameCharging();
|
Check_MiniGameCharging();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ public class SpecialAlbumOpen : AddrHandleBase
|
||||||
texts[2].text = $"[{girlname}]캐릭터 열기 시 개방";
|
texts[2].text = $"[{girlname}]캐릭터 열기 시 개방";
|
||||||
break;
|
break;
|
||||||
case eCollectionMethod.Gacha:
|
case eCollectionMethod.Gacha:
|
||||||
texts[2].text = $"행운 뽑기에서 Unbelievable! 누적 1회 획득 시 무료 개방";
|
texts[2].text = $"행운 뽑기에서 Unbelievable! 누적 {m_Data.n_GirlID}회 획득 시 무료 개방";
|
||||||
break;
|
break;
|
||||||
case eCollectionMethod.FullCollection:
|
case eCollectionMethod.FullCollection:
|
||||||
texts[2].text = $"[{girlname}]기본 앨범 모두 수집 시 무료 개방";
|
texts[2].text = $"[{girlname}]기본 앨범 모두 수집 시 무료 개방";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue