mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
fix: Restore a couple of passes lost in the merge
This commit is contained in:
parent
370804a829
commit
2f27b13dc0
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0985d0cf1a434879b3ec7e80a90bc598
|
||||
guid: 9aeea331419795c41a97112c489b1632
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
|
@ -1,3 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e0ef93cb5a6c4e46bb3318ae8116de77
|
||||
guid: af583e8ac3104fa4f8466741614219a0
|
||||
timeCreated: 1691238553
|
@ -1,3 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a3369cd20964957920c3fe8b54df521
|
||||
guid: 00241ec2d86cdae4bb5076af0699b33a
|
||||
timeCreated: 1691238359
|
@ -1,3 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 17002a48bb4b4ea79993e0549faf2d0e
|
||||
guid: 6a66f552b8b334a45a986bfcf6767200
|
||||
timeCreated: 1692511752
|
@ -1,3 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: deb8a666d3af40b0be0ac616cf98a05b
|
||||
guid: f60ee78d127fda546a84d5396edfc8b2
|
||||
timeCreated: 1691237971
|
@ -38,7 +38,24 @@ namespace nadena.dev.modular_avatar.core.editor.plugin
|
||||
});
|
||||
seq.Run(BlendshapeSyncAnimationPluginPass.Instance);
|
||||
seq.Run(PhysbonesBlockerPluginPass.Instance);
|
||||
;
|
||||
seq.Run("Fixup Expressions Menu", ctx =>
|
||||
{
|
||||
var maContext = ctx.Extension<ModularAvatarContext>().BuildContext;
|
||||
FixupExpressionsMenuPass.FixupExpressionsMenu(maContext);
|
||||
});
|
||||
seq.Run("Rebind humanoid avatar", ctx =>
|
||||
{
|
||||
// workaround problem with avatar matching
|
||||
// https://github.com/bdunderscore/modular-avatar/issues/430
|
||||
var animator = ctx.AvatarRootObject.GetComponent<Animator>();
|
||||
if (animator)
|
||||
{
|
||||
var avatar = animator.avatar;
|
||||
animator.avatar = null;
|
||||
// ReSharper disable once Unity.InefficientPropertyAccess
|
||||
animator.avatar = avatar;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
InPhase(BuildPhase.Optimizing)
|
||||
|
@ -129,6 +129,13 @@
|
||||
"com.unity.modules.imgui": "1.0.0"
|
||||
}
|
||||
},
|
||||
"com.unity.xr.oculus.android": {
|
||||
"version": "2.38.6",
|
||||
"depth": 0,
|
||||
"source": "registry",
|
||||
"dependencies": {},
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.xr.oculus.standalone": {
|
||||
"version": "2.38.4",
|
||||
"depth": 0,
|
||||
@ -159,14 +166,6 @@
|
||||
"com.unity.nuget.newtonsoft-json": "2.0.2"
|
||||
}
|
||||
},
|
||||
"com.vrchat.core.vpm-resolver": {
|
||||
"version": "file:com.vrchat.core.vpm-resolver",
|
||||
"depth": 0,
|
||||
"source": "embedded",
|
||||
"dependencies": {
|
||||
"com.unity.nuget.newtonsoft-json": "2.0.2"
|
||||
}
|
||||
},
|
||||
"de.thryrallo.vrc.avatar-performance-tools": {
|
||||
"version": "https://github.com/Thryrallo/VRC-Avatar-Performance-Tools.git",
|
||||
"depth": 0,
|
||||
|
Loading…
Reference in New Issue
Block a user