mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-10 12:41:57 -05:00
17 lines
407 B
C#
17 lines
407 B
C#
using System;
|
|
using UnityEngine.Serialization;
|
|
|
|
namespace UniVRM10.FastSpringBones.Blittables
|
|
{
|
|
/// <summary>
|
|
/// 1本の毛束を表すデータ型
|
|
/// </summary>
|
|
[Serializable]
|
|
public struct BlittableSpring
|
|
{
|
|
public BlittableSpan colliderSpan;
|
|
public BlittableSpan logicSpan;
|
|
public int centerTransformIndex;
|
|
public int transformIndexOffset;
|
|
}
|
|
} |