누적 최대 콤보 횟수만큼 획득 재화가 %증가하던데 1/100만 적용하게 바꿀 수 있을까요? 예를들어 누적 180 콤보 = 18% 증가 인데 1.8%만 증가하게

This commit is contained in:
Ino 2026-01-09 14:15:54 +09:00
parent c3ffe64833
commit fe283c3ca5
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ public class HorseRushManager : MonoBehaviour
_playCount++;
_maxFever = maxFeverStreak > _maxFever ? maxFeverStreak : _maxFever;
_maxScore = coinAmount > _maxScore ? coinAmount : _maxScore;
var addcoinrate = maxCombo / 1000f;
var addcoinrate = maxCombo / 10000f;
var bonuscoin = 0;
if (addcoinrate > 0f)
{

View File

@ -24,7 +24,7 @@ public class MiniGameResult : MonoBehaviour
m_rubyAmount.Obfuscate();
texts[0].text = maxCombo.ToString();
texts[1].text = ((int)(maxCombo / 10f)).ToString() + "%";
texts[1].text = DSUtil.GetCommaText_N2(maxCombo / 100f) + "%";
//texts[2].text = "";
texts[5].text = rubyAmount.ToString();
texts[3].text = coinAmount.ToString();