mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-23 02:44:37 -05:00
* MeshUtility を UniGLTF 下に移動 * Assets/VRM10 を追加 * JsonSchemaからのコード生成 UniGLTF/Editor/Generator を追加
24 lines
488 B
C#
24 lines
488 B
C#
using System;
|
|
|
|
namespace VRM
|
|
{
|
|
/// <summary>
|
|
/// 0系では運用されなかった。基本的に凍結。今後も変更しない
|
|
/// </summary>
|
|
public class VRMSpecVersion
|
|
{
|
|
public const int Major = 0;
|
|
public const int Minor = 0;
|
|
|
|
public static string Version
|
|
{
|
|
get
|
|
{
|
|
return String.Format("{0}.{1}", Major, Minor);
|
|
}
|
|
}
|
|
|
|
public const string VERSION = "0.0";
|
|
}
|
|
}
|