fix 改行

This commit is contained in:
kimura 2022-06-27 17:33:29 +09:00
parent ca8423dbc3
commit e952bb19e2
1 changed files with 2 additions and 2 deletions

View File

@ -32,10 +32,10 @@ namespace MyGame.Scenes.MiniGame.Scripts
switch (stageData.Difficulty)
{
case ScrollGameDifficulty.Easy:
lockText.text = $"初級のハイスコア{stageData.needScore}以上で開放";
lockText.text = $"初級のハイスコア\n{stageData.needScore}以上で開放";
break;
case ScrollGameDifficulty.Normal:
lockText.text = $"中級のハイスコア{stageData.needScore}以上で開放";
lockText.text = $"中級のハイスコア\n{stageData.needScore}以上で開放";
break;
case ScrollGameDifficulty.Hard:
lockText.text = string.Empty;