<実現したいこと>
コードでresultというpublicなTextのテキストを変えるとき、改行したい。
発生していること
"文章1 /n 文章2"
とするとそのまま
文章1 /n 文章2
と出てしまう。
<ソースコード>
C#
1using UnityEngine; 2using UnityEngine.UI; 3public class ShopScript : MonoBehaviour 4{ 5 public Text result; 6 // Start is called before the first frame update 7 public void Start() 8 { 9 10 } 11 12 // Update is called once per frame 13 public void Update() 14 { 15 16 } 17 public void shop1() 18 { 19 if (PlayerPrefs.GetInt("totalcoin") > 100) 20 { 21 result.text ="購入に成功しました!"; 22 PlayerPrefs.SetFloat("safetime", PlayerPrefs.GetFloat("safetime") + 0.5f); 23 } 24 else 25 { 26 result.text = "スコアが足りません!スコアはゲームが終わった後に表示されます"; 27 } 28 } 29} 30
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/26 08:03