Merge pull request #1917 from ousttrue/version/v0_107_0

UniVRM-0.107.0
This commit is contained in:
ousttrue 2022-11-09 16:34:38 +09:00 committed by GitHub
commit 802d0f67aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 8325 additions and 20 deletions

View File

@ -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";
}
}

View File

@ -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",
@ -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": [

View File

@ -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";
}
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 79cea8265d53aaf47b16fff91ee9a5d6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7d2617171adc40b41ac50228f101e178
timeCreated: 1546851178
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,6 +1,6 @@
{
"name": "com.vrmc.univrm",
"version": "0.106.0",
"version": "0.107.0",
"displayName": "VRM",
"description": "VRM importer",
"unity": "2019.4",
@ -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": [

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b092f2ba86c6ec247afd37d38108bf03
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 08df5151e71aed748b13547492fb8b9a
timeCreated: 1546851178
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@ -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}
@ -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

View File

@ -168,9 +168,6 @@ namespace UniVRM10.VRM10Viewer
[SerializeField]
UIFields m_ui = default;
[SerializeField]
HumanPoseClip m_pose = default;
private void Reset()
{
var buttons = GameObject.FindObjectsOfType<Button>();
@ -204,9 +201,12 @@ namespace UniVRM10.VRM10Viewer
}
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();
@ -224,6 +224,8 @@ namespace UniVRM10.VRM10Viewer
context.Load();
m_src = context.Root.GetComponent<Animator>();
m_ui.IsBvhEnabled = true;
// hide box man
context.Root.GetComponent<SkinnedMeshRenderer>().enabled = false;
}
private void Update()

View File

@ -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",
@ -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": [
{

View File

@ -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",