Skip to content

Commit

Permalink
Merge pull request #2216 from ousttrue/version/v0_117_0
Browse files Browse the repository at this point in the history
UniVRM-0.117
  • Loading branch information
ousttrue committed Jan 9, 2024
2 parents 54295da + a71e60c commit 9a916c3
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 23 deletions.
4 changes: 2 additions & 2 deletions Assets/UniGLTF/Runtime/UniGLTF/PackageVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ namespace UniGLTF
public static partial class PackageVersion
{
public const int MAJOR = 0;
public const int MINOR = 116;
public const int MINOR = 117;
public const int PATCH = 0;
public const string VERSION = "0.116.0";
public const string VERSION = "0.117.0";
}
}
4 changes: 2 additions & 2 deletions Assets/UniGLTF/Runtime/UniGLTF/UniGLTFVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ namespace UniGLTF
public static partial class UniGLTFVersion
{
public const int MAJOR = 2;
public const int MINOR = 52;
public const int MINOR = 53;
public const int PATCH = 0;
public const string VERSION = "2.52.0";
public const string VERSION = "2.53.0";
}
}
4 changes: 2 additions & 2 deletions Assets/UniGLTF/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.vrmc.gltf",
"version": "0.116.0",
"version": "0.117.0",
"displayName": "UniGLTF",
"description": "GLTF importer and exporter",
"unity": "2021.3",
Expand All @@ -11,7 +11,7 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.116.0",
"com.vrmc.vrmshaders": "0.117.0",
"com.unity.modules.animation": "1.0.0"
},
"samples": [
Expand Down
12 changes: 2 additions & 10 deletions Assets/VRM/Samples~/RuntimeExporterSample/VRMRuntimeExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,9 @@ static byte[] ExportSimple(GameObject model)
static byte[] ExportCustom(GameObject exportRoot, bool forceTPose = false)
{
// normalize
var target = VRMBoneNormalizer.Execute(exportRoot, forceTPose);
VRMBoneNormalizer.Execute(exportRoot, forceTPose);

try
{
return ExportSimple(target);
}
finally
{
// cleanup
GameObject.Destroy(target);
}
return ExportSimple(exportRoot);
}

void OnExported(UniGLTF.glTF vrm)
Expand Down
6 changes: 3 additions & 3 deletions Assets/VRM/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.vrmc.univrm",
"version": "0.116.0",
"version": "0.117.0",
"displayName": "VRM",
"description": "VRM importer",
"unity": "2021.3",
Expand All @@ -14,8 +14,8 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.116.0",
"com.vrmc.gltf": "0.116.0",
"com.vrmc.vrmshaders": "0.117.0",
"com.vrmc.gltf": "0.117.0",
"com.unity.ugui": "1.0.0"
},
"samples": [
Expand Down
6 changes: 3 additions & 3 deletions Assets/VRM10/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.vrmc.vrm",
"version": "0.116.0",
"version": "0.117.0",
"displayName": "VRM-1.0",
"description": "VRM-1.0 importer",
"unity": "2021.3",
Expand All @@ -14,8 +14,8 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.116.0",
"com.vrmc.gltf": "0.116.0"
"com.vrmc.vrmshaders": "0.117.0",
"com.vrmc.gltf": "0.117.0"
},
"samples": [
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/VRMShaders/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.vrmc.vrmshaders",
"version": "0.116.0",
"version": "0.117.0",
"displayName": "VRM Shaders",
"description": "VRM Shaders",
"unity": "2021.3",
Expand Down

0 comments on commit 9a916c3

Please sign in to comment.