mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-24 06:57:49 -05:00
14 lines
292 B
C#
14 lines
292 B
C#
using System;
|
|
|
|
namespace UniVRM10.FastSpringBones.Blittables
|
|
{
|
|
/// <summary>
|
|
/// 1本の毛束を表すデータ型
|
|
/// </summary>
|
|
[Serializable]
|
|
public struct BlittableSpring
|
|
{
|
|
public BlittableSpan colliderSpan;
|
|
public BlittableSpan jointSpan;
|
|
}
|
|
} |