Merge pull request #2815 from ousttrue/version/v0_131_2

UniVRM-0.131.2
This commit is contained in:
ousttrue 2026-07-23 15:32:54 +09:00 committed by GitHub
commit 531e99c384
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 22 additions and 12 deletions

View File

@ -5,7 +5,7 @@ namespace UniGLTF
{
public const int MAJOR = 0;
public const int MINOR = 131;
public const int PATCH = 1;
public const string VERSION = "0.131.1";
public const int PATCH = 2;
public const string VERSION = "0.131.2";
}
}

View File

@ -5,7 +5,7 @@ namespace UniGLTF
{
public const int MAJOR = 2;
public const int MINOR = 67;
public const int PATCH = 1;
public const string VERSION = "2.67.1";
public const int PATCH = 2;
public const string VERSION = "2.67.2";
}
}

View File

@ -1,6 +1,6 @@
{
"name": "com.vrmc.gltf",
"version": "0.131.1",
"version": "0.131.2",
"displayName": "UniGLTF",
"description": "GLTF importer and exporter",
"unity": "2021.3",

View File

@ -1,6 +1,6 @@
{
"name": "com.vrmc.univrm",
"version": "0.131.1",
"version": "0.131.2",
"displayName": "VRM",
"description": "VRM importer",
"unity": "2021.3",
@ -14,7 +14,7 @@
"name": "VRM Consortium"
},
"dependencies": {
"com.vrmc.gltf": "0.131.1",
"com.vrmc.gltf": "0.131.2",
"com.unity.ugui": "1.0.0"
},
"samples": [

View File

@ -154,8 +154,18 @@ namespace UniVRM10.ClothWarp.Components
p = m_target.GetParticleFromTransform(p.Transform);
var t = p.Transform;
Handles.color = Color.green;
Handles.SphereHandleCap(t.GetInstanceID(), t.position, t.rotation, p.Settings.Radius * 2, EventType.Repaint);
Handles.SphereHandleCap(t.GetControlId(), t.position, t.rotation, p.Settings.Radius * 2, EventType.Repaint);
}
}
}
static class ClothWarpRootEditorExtensions
{
internal static int GetControlId(this Component component)
#if UNITY_6000_5_OR_NEWER
=> component.GetEntityId().GetHashCode();
#else
=> component.GetInstanceID();
#endif
}
}

View File

@ -1,6 +1,6 @@
{
"name": "com.vrmc.vrm",
"version": "0.131.1",
"version": "0.131.2",
"displayName": "VRM-1.0",
"description": "VRM-1.0 importer",
"unity": "2021.3",
@ -15,7 +15,7 @@
},
"dependencies": {
"com.unity.timeline": "1.7.6",
"com.vrmc.gltf": "0.131.1"
"com.vrmc.gltf": "0.131.2"
},
"samples": [
{

View File

@ -163,7 +163,7 @@
"depth": 0,
"source": "embedded",
"dependencies": {
"com.vrmc.gltf": "0.131.1",
"com.vrmc.gltf": "0.131.2",
"com.unity.ugui": "1.0.0"
}
},
@ -173,7 +173,7 @@
"source": "embedded",
"dependencies": {
"com.unity.timeline": "1.7.6",
"com.vrmc.gltf": "0.131.1"
"com.vrmc.gltf": "0.131.2"
}
},
"com.unity.modules.ai": {