mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 13:04:17 -05:00
16 lines
319 B
C#
16 lines
319 B
C#
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();
|
|
}
|
|
}
|
|
}
|