NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray

public static NativeArray<T> ConvertExistingDataToNativeArray(void* dataPointer, int length, Unity.Collections.Allocator allocator);

Parameters

dataPointer Pointer to the preallocated data.
length Length (in bytes) of the data.
allocator Allocation strategy to use.

Returns

NativeArray<T> A new NativeArray, allocated with the given strategy and wrapping the provided data.

Description

Converts an existing buffer to a NativeArray.

This method can be used to turn an existing buffer into a NativeArray, to be fed to the Unity API for processing. Ownership of the data is controlled via the allocation strategy provided via the allocator argument. Allocator.None can be used in case the data is owned externally, while the others can be used to transfer control to the NativeArray.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答