mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-15 15:11:43 -05:00
17 lines
321 B
C#
17 lines
321 B
C#
using UniGLTF;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public class VrmAnimationData
|
|
{
|
|
public GltfData Data { get; }
|
|
|
|
public VrmAnimationData(GltfData data)
|
|
{
|
|
Data = data;
|
|
|
|
// ヒューマノイド向け
|
|
ForceGltfNodeUniqueName.Process(Data.GLTF.nodes);
|
|
}
|
|
}
|
|
} |