mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-04 20:27:01 -05:00
12 lines
293 B
C#
12 lines
293 B
C#
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public class Vrm10FastSpringboneRuntimeProvider : MonoBehaviour, IVrm10SpringBoneRuntimeProvider
|
|
{
|
|
public IVrm10SpringBoneRuntime CreateSpringBoneRuntime()
|
|
{
|
|
return new Vrm10FastSpringboneRuntime();
|
|
}
|
|
}
|
|
} |