Unity(C#):別のシーンからリストを呼び出すにはどうすればよいですか?現在のシーンでnullReferenceException bcが返された場合、変数は設定されていません。しかし、前のシーンでは、私には正しい値と変数がありました。 (注:2つのシーンは異なりますが、シーン間の共有値としてスコアを使用したい)。Unity(C#):List <int>を別のシーンから呼び出すにはどうすればいいですか?
それ以外の場合は、「frameTexts [9] .text」の位置を取得する代わりに利用できますか?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ScoreDisplay : MonoBehaviour
{
public Text[] rollTexts, frameTexts;
static string output;
public void FillRolls(List<int> rolls)
{
string scoreString = FormatRolls(rolls);
for (int i = 0; i < scoreString.Length; i++)
{
rollTexts[i].text = scoreString[i].ToString();
}
}
public void Fillframes(List<int> frames)
{
for (int i = 0; i < frames.Count; i++)
{
frameTexts[i].text = frames[i].ToString();
Debug.Log(frameTexts[i].text + " frames");
}
}
public static string FormatRolls(List<int> rolls)
{
// ScoreDisplay scoreDisplay = new ScoreDisplay();
output = "";
for (int i = 0; i < rolls.Count; i++)
{
int box = output.Length + 1; // Score box 1 to 21
if (rolls[i] == 0)
{ // Always enter 0 as -
output += "-";
}
else if ((box % 2 == 0 || box == 21) && rolls[i - 1] + rolls[i] == 10)
{ // SPARE anywhere
output += "/";
}
else if (box >= 19 && rolls[i] == 10)
{ // STRIKE in frame 10
output += "X";
}
else if (rolls[i] == 10)
{ // STRIKE in frame 1-9
output += "X ";
}
else
{
output += rolls[i].ToString(); // Normal 1-9 bowl
}
}
return output;
}
public string DisplayFinalScore()
{
string FinalScore = "Congrats on scoring: " + frameTexts[9].text;
return FinalScore;
}
}
リストを静的にして、モノオブジェクトから継承しないクラス内にする – Lestat
[シーン間のユニティパスデータ](https://stackoverflow.com/questions/32306704/unity-pass-data)の可能な複製-between-scenes) – Serlite