Skip to content

Commit

Permalink
Merge pull request #1917 from ousttrue/version/v0_107_0
Browse files Browse the repository at this point in the history
UniVRM-0.107.0
  • Loading branch information
ousttrue authored Nov 9, 2022
2 parents 870318b + d25f6d3 commit 802d0f6
Show file tree
Hide file tree
Showing 14 changed files with 8,325 additions and 20 deletions.
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 = 42;
public const int MINOR = 43;
public const int PATCH = 0;
public const string VERSION = "2.42.0";
public const string VERSION = "2.43.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.106.0",
"version": "0.107.0",
"displayName": "UniGLTF",
"description": "GLTF importer and exporter",
"unity": "2019.4",
Expand All @@ -11,7 +11,7 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.106.0",
"com.vrmc.vrmshaders": "0.107.0",
"com.unity.modules.animation": "1.0.0"
},
"samples": [
Expand Down
4 changes: 2 additions & 2 deletions Assets/VRM/Runtime/Format/VRMVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ namespace VRM
public static partial class VRMVersion
{
public const int MAJOR = 0;
public const int MINOR = 106;
public const int MINOR = 107;
public const int PATCH = 0;
public const string VERSION = "0.106.0";
public const string VERSION = "0.107.0";
}
}
8 changes: 8 additions & 0 deletions Assets/VRM/Samples~/SimpleViewer/Motions.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4,136 changes: 4,136 additions & 0 deletions Assets/VRM/Samples~/SimpleViewer/Motions/vrm_simpleviewer_test_motion.txt

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.106.0",
"version": "0.107.0",
"displayName": "VRM",
"description": "VRM importer",
"unity": "2019.4",
Expand All @@ -14,8 +14,8 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.106.0",
"com.vrmc.gltf": "0.106.0",
"com.vrmc.vrmshaders": "0.107.0",
"com.vrmc.gltf": "0.107.0",
"com.unity.ugui": "1.0.0"
},
"samples": [
Expand Down
8 changes: 8 additions & 0 deletions Assets/VRM10/Samples~/VRM10Viewer/Motions.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4,136 changes: 4,136 additions & 0 deletions Assets/VRM10/Samples~/VRM10Viewer/Motions/vrm10viewer_test_motion.txt

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Assets/VRM10/Samples~/VRM10Viewer/VRM10Viewer.unity
Original file line number Diff line number Diff line change
Expand Up @@ -5572,7 +5572,7 @@ MonoBehaviour:
m_src: {fileID: 0}
m_target: {fileID: 802105000}
Root: {fileID: 0}
m_motion: {fileID: 4900000, guid: 7d2617171adc40b41ac50228f101e178, type: 3}
m_motion: {fileID: 4900000, guid: 08df5151e71aed748b13547492fb8b9a, type: 3}
m_texts:
m_textModelTitle: {fileID: 1111491925}
m_textModelVersion: {fileID: 1045380263}
Expand All @@ -5591,7 +5591,6 @@ MonoBehaviour:
ToggleMotionTPose: {fileID: 1791103380}
ToggleMotionBVH: {fileID: 1311520910}
ToggleMotion: {fileID: 224350194}
m_pose: {fileID: 11400000, guid: 879e332f84a378c4da3b87af13da3e85, type: 2}
--- !u!1 &1791103378
GameObject:
m_ObjectHideFlags: 0
Expand Down
12 changes: 7 additions & 5 deletions Assets/VRM10/Samples~/VRM10Viewer/VRM10ViewerUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,6 @@ public bool IsBvhEnabled
[SerializeField]
UIFields m_ui = default;

[SerializeField]
HumanPoseClip m_pose = default;

private void Reset()
{
var buttons = GameObject.FindObjectsOfType<Button>();
Expand Down Expand Up @@ -204,9 +201,12 @@ private void Start()
}

string[] cmds = System.Environment.GetCommandLineArgs();
if (cmds.Length > 1)
for (int i = 1; i < cmds.Length; ++i)
{
LoadModel(cmds[1]);
if (File.Exists(cmds[i]))
{
LoadModel(cmds[i]);
}
}

m_texts.Start();
Expand All @@ -224,6 +224,8 @@ private void LoadMotion(string source)
context.Load();
m_src = context.Root.GetComponent<Animator>();
m_ui.IsBvhEnabled = true;
// hide box man
context.Root.GetComponent<SkinnedMeshRenderer>().enabled = false;
}

private void Update()
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.106.0",
"version": "0.107.0",
"displayName": "VRM-1.0",
"description": "VRM-1.0 importer",
"unity": "2019.4",
Expand All @@ -14,8 +14,8 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.vrmshaders": "0.106.0",
"com.vrmc.gltf": "0.106.0"
"com.vrmc.vrmshaders": "0.107.0",
"com.vrmc.gltf": "0.107.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.106.0",
"version": "0.107.0",
"displayName": "VRM Shaders",
"description": "VRM Shaders",
"unity": "2019.4",
Expand Down

0 comments on commit 802d0f6

Please sign in to comment.