Files
Fishing2/Assets/ThirdParty/Obi/Scripts/Common/Backends/Burst/DataStructures/BurstQueryShape.cs
2025-05-10 12:49:47 +08:00

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