NativeArray<T0>Constructor

切换到手册
public NativeArray<T0> (T[] array, Unity.Collections.Allocator allocator);

参数

array从数组复制数据。
allocator用于数据的分配策略。

描述

从现有元素数组创建新的 NativeArray。


public NativeArray<T0> (NativeArray<T> array, Unity.Collections.Allocator allocator);

参数

array从 NativeArray 复制数据。
allocator用于数据的分配策略。

描述

从现有 NativeArray 创建新的 NativeArray。


public NativeArray<T0> (int length, Unity.Collections.Allocator allocator, Unity.Collections.NativeArrayOptions options);

参数

length要分配的元素数量。
allocator用于数据的分配策略。
options通过各种选项控制 NativeArray 的行为。

描述

创建一个新的 NativeArray,分配足够的内存来容纳提供的元素数量。