mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-25 03:44:43 -05:00
13 lines
278 B
C#
13 lines
278 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UniVRM10.FastSpringBones.System
|
|
{
|
|
[Serializable]
|
|
public struct FastSpringBoneSpring
|
|
{
|
|
public Transform center;
|
|
public FastSpringBoneJoint[] joints;
|
|
public FastSpringBoneCollider[] colliders;
|
|
}
|
|
} |