mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 14:29:52 -05:00
18 lines
516 B
C#
18 lines
516 B
C#
using System;
|
|
|
|
namespace UniVRM10.FastSpringBones.Blittables
|
|
{
|
|
/// <summary>
|
|
/// 1本の毛束を表すデータ型
|
|
/// FastSpringBoneではこれを起点として並列化し、処理を行う
|
|
/// </summary>
|
|
[Serializable]
|
|
public struct BlittableSpring
|
|
{
|
|
public BlittableSpan colliderSpan;
|
|
public BlittableSpan logicSpan;
|
|
public int centerTransformIndex;
|
|
public int transformIndexOffset;
|
|
public unsafe BlittableExternalData* ExternalData;
|
|
}
|
|
} |