mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-24 11:40:45 -05:00
Merge branch 'master' into vrm_itimecontrol
This commit is contained in:
commit
7a65c4d1a4
|
|
@ -43,7 +43,11 @@ namespace UniVRM10
|
|||
{
|
||||
bindingPath = nameof(VRM10SpringBoneColliderGroup.Colliders)
|
||||
};
|
||||
#if UNITY_2022_3_OR_NEWER
|
||||
m_colliders.selectionChanged += (e) =>
|
||||
#else
|
||||
m_colliders.onSelectionChange += (e) =>
|
||||
#endif
|
||||
{
|
||||
var item = (SerializedProperty)e.FirstOrDefault();
|
||||
if (item == null)
|
||||
|
|
|
|||
|
|
@ -309,7 +309,11 @@ namespace UniVRM10
|
|||
root.Add(m_springs);
|
||||
|
||||
var selected = new PropertyField();
|
||||
#if UNITY_2022_3_OR_NEWER
|
||||
m_springs.selectedIndicesChanged += (e) =>
|
||||
#else
|
||||
m_springs.onSelectedIndicesChange += (e) =>
|
||||
#endif
|
||||
{
|
||||
var values = e.ToArray();
|
||||
if (values.Length > 0)
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ UniVRM can import/export following supported file types at both runtime and edit
|
|||
|
||||
## Supported Environments
|
||||
|
||||
The latest UniVRM supports Unity 2021.3 LTS or later.
|
||||
The latest UniVRM supports Unity 2022.3 LTS or later from `v0.128.0`.
|
||||
|
||||
UniVRM supports scripting backends both .NET and IL2CPP.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user