配列によりひとつの変数に複数のオブジェクトを格納できます。
Array クラスは Javascript でのみ利用可能です
Here is a basic example of what you can do with an array class:
Array クラスは Javascript でのみ利用可能です
There are two types of arrays in Unity, builtin arrays and normal Javascript Arrays.
Builtin arrays (native .NET arrays), are extremely fast and efficient but they can not be resized.
これらは static に型宣言されていて、インスペクターで編集可能です。次にビルトインの配列を使用する基本的なサンプルを示します。
// example c# script showing how // an array can be implemented. using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { // Exposes an float array in the inspector, which you can edit there. public float[] values; void Start() { foreach (float value in values) { print(value); }
// Since we can't resize builtin arrays // we have to recreate the array to resize it values = new float[10];
// assign the second element values[1] = 5.0F; } }
ビルトイン配列はパフォーマンスが重要なスクリプトでは便利です( Unity の Javascript やビルトイン配列では mesh インターフェースを使用して秒間 200 万頂点を容易に処理できます。)
Normal Javascript Arrays on the other hand can be resized, sorted and can do all other operations you would expect from an array class.
Javascript Arrays do not show up in the inspector.
Note: You can easily convert between Javascript Arrays and builtin arrays.
Array クラスは Javascript でのみ利用可能です
Note that Array functions are upper case following Unity's naming convention.
As a convenience for javascript users, Unity also accepts lower case functions for the array class.
Note: Unity doesn't support serialization of a List of Lists, nor an Array of Arrays.
length | 配列の要素数を返す、または、設定する配列の length プロパティーです。 |
Array | サイズが固定された配列を作成します |