public class CSVsave : MonoBehaviour
{
float sampleData = "ブラシ位置";
void Start() { } void Update() { Vector3 tmp = GameObject.Find("Toothbrush").transform.position; string x = tmp.x.ToString(); 1⃣ Array.Resize(ref sampleData, sampleData.Length + 1); 2⃣ sampleData[sampleData.Length - 1] = x; }
}
上記のスクリプトでToothbrushの位置を順に配列に入れていく操作が行いたいのですが,Lengthを使用している1⃣,2⃣の行にて下記エラーが発生してしまいます
1⃣error CS0411: The type arguments for method 'Array.Resize<T>(ref T[], int)' cannot be inferred from the usage. Try specifying the type arguments explicitly.
2⃣error CS0200: Property or indexer 'string.this[int]' cannot be assigned to -- it is read only
どうすればエラーを出さずに目的の操作が行えるでしょうか.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/06 04:01