お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Namespace: UnityEditor
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close配列(Array)を扱いやすくするためのヘルパークラスです
Add | 配列の最後に要素を追加します |
AddRange | 配列の最後に複数の要素を追加します |
ArrayEquals | 2つの配列が同じかどうか判断します |
Clear | 配列を初期化します |
Contains | 配列の中に特定の要素が含まれているか確認します |
FindIndex | 配列から条件を満たす要素の最初のindexを取得します |
IndexOf | 配列から特定の要素の最初のindexを取得します |
Insert | 要素を配列の特定の位置に挿入します |
LastIndexOf | 配列から特定の要素の最後のindexを取得します |
Remove | 配列から特定の要素を削除します |
RemoveAt | indexから配列の要素を削除します |