fix: proxy animations broken on legacy VRCSDK

fixes: #187
This commit is contained in:
bd_ 2023-01-26 18:28:48 +09:00
parent 91813c54e8
commit 7e9dc20201

View File

@ -181,7 +181,8 @@ namespace nadena.dev.modular_avatar.core.editor
// 2. Unitypackage based installations of the VRCSDK
// 3. VCC based installations of the VRCSDK
// 4. Very old VCC based installations of the VRCSDK where proxy animations were copied into Assets
return path.Contains("/AV3 Demo Assets/Animation/ProxyAnim/proxy");
return path.Contains("/AV3 Demo Assets/Animation/ProxyAnim/proxy")
|| path.Contains("/VRCSDK/Examples3/Animation/ProxyAnim/proxy");
}
}
}