mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-07 05:36:56 -05:00
#711 UniGLTFのバージョン番号は、 UniVRMのバージョン番号から機械的に決めることにします。 更新の有無でそれぞれバージョンアップの有無を管理すると煩雑になるためです。 major: 2 minor: UniVRM.minor - 64 patch: UniVRM.patch UniGLTF のバージョンを UniVRMのバージョンに揃えたいのですが、 先に `1.27` というバージョンを持っていて巻き戻るので、とりあえず `2.0` に上げていてやむを得ない状態に。
12 lines
231 B
C#
12 lines
231 B
C#
|
|
namespace VRM
|
|
{
|
|
public static partial class VRMVersion
|
|
{
|
|
public const int MAJOR = 0;
|
|
public const int MINOR = 65;
|
|
public const int PATCH = 3;
|
|
public const string VERSION = "0.65.3";
|
|
}
|
|
}
|