mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 13:04:17 -05:00
13 lines
325 B
C#
13 lines
325 B
C#
using UnityEngine;
|
|
using UniVRM10;
|
|
|
|
namespace RotateParticle
|
|
{
|
|
public class RotateParticleSpringboneRuntimeProvider : MonoBehaviour, IVrm10SpringBoneRuntimeProvider
|
|
{
|
|
public IVrm10SpringBoneRuntime CreateSpringBoneRuntime()
|
|
{
|
|
return new RotateParticleSpringboneRuntime();
|
|
}
|
|
}
|
|
} |