holopy3/Assets/UniGLTF/UniHumanoid/Scripts/IO/BvhImporter.cs

16 lines
319 B
C#
Raw Permalink Normal View History

2021-01-28 12:07:52 +00:00
using System;
namespace UniHumanoid
{
public static class BvhImporter
{
[Obsolete("use BvhImporter.Parse(path), then BvhImporter.Load()")]
public static void Import(BvhImporterContext context)
{
context.Parse(context.Path);
context.Load();
}
}
}