mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-07 13:47:06 -05:00
12 lines
313 B
C#
12 lines
313 B
C#
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public class Vrm10FastSpringboneRuntimeStandaloneProvider : MonoBehaviour, IVrm10SpringBoneRuntimeProvider
|
|
{
|
|
public IVrm10SpringBoneRuntime CreateSpringBoneRuntime()
|
|
{
|
|
return new Vrm10FastSpringboneRuntimeStandalone();
|
|
}
|
|
}
|
|
} |