GetBatchProxyShapes(ReadOnlySpan<ProxyHandle>, Allocator)
Get a batch of proxy user handles as shapes, valid only on a space bound to a world. On a bound space every proxy user handle is a shape, so each is returned as a shape that the caller can check for validity. This only applies to a space bound to a world.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: Unity.U2D.Physics
- Assembly: UnityEngine.PhysicsCore2DModule
public NativeArray<PhysicsShape> GetBatchProxyShapes(ReadOnlySpan<PhysicsSpace.ProxyHandle> proxyHandles, Allocator allocator = Allocator.Temp)
Parameters
The proxies to get.
The memory allocator to use for the results. This can only be Allocator.Temp, Allocator.TempJob or Allocator.Persistent.
Returns
Type | Description |
|---|---|
| NativeArray<PhysicsShape> | The proxy shapes, one per proxy in the same order. This NativeArray must be disposed of after use otherwise leaks will occur. The exception to this is if the array is empty. |
Remarks
See PhysicsSpace.Create. The returned shapes are not guaranteed to still be valid, so check _isValid before use. If any proxy handle in the batch is invalid, no results are returned and an empty array is produced.