16 lines
347 B
C#
16 lines
347 B
C#
#if (OBI_BURST && OBI_MATHEMATICS && OBI_COLLECTIONS)
|
|
using Unity.Mathematics;
|
|
|
|
namespace Obi
|
|
{
|
|
public struct BurstQueryShape
|
|
{
|
|
public float4 center;
|
|
public float4 size;
|
|
public QueryShape.QueryType type;
|
|
public float contactOffset;
|
|
public float distance;
|
|
public int filter;
|
|
}
|
|
}
|
|
#endif |