UniVRM/Assets/VRM10_Samples/ClothSample/ClothWarp/Runtime/Jobs/Warp.cs
2024-11-29 23:55:47 +09:00

15 lines
258 B
C#

namespace UniVRM10.ClothWarp.Jobs
{
public struct ArrayRange
{
public int Start;
public int End;
}
public struct WarpInfo
{
public ArrayRange PrticleRange;
public ArrayRange ColliderGroupRefRange;
}
}