配列の index
番目の要素を取り除きます
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public ArrayList arr = new Array("Hello", "and good morning", "World"); void Example() { arr.RemoveAt(1); print(arr); } }
注意: javascript でのみ利用可能です。C# ではこの機能は使えません。