mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-24 11:57:21 -05:00
15 lines
258 B
C#
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;
|
|
}
|
|
}
|