- Düzenlendi
Unity animation transition issue
Hey!
I met an issue with animations transition in Unity
It's not about the first frame, keys and setupPose.
You'll see it at the video (watcj in 60 fps)
Can you help me guys?
PS sorry for my poor english
Can you send an example Unity project that exhibits the issue to unity@esotericsoftware.com
I can take a look at it there.
Sent an email.
Thank you
There's a unity@esotericsoftware.com now?
Pharan yazdıThere's a unity@esotericsoftware.com now?
Yea. But you should still send your selfies to my personal though.
Unity 5.2.x has a Mecanim problem... the Current and Next clip info arrays have duplicates for a single frame at the end of a transition... I hate Mecanim soooo much...
Find:
foreach (var info in nextClipInfo) {
float weight = info.weight * layerWeight;
if (weight == 0)
continue;
Replace with:
foreach (var info in nextClipInfo) {
float weight = info.weight * layerWeight;
if (weight == 0 || weight == 1)
continue;
Mitch yazdıPharan yazdıThere's a unity@esotericsoftware.com now?
Yea. But you should still send your selfies to my personal though.
why does nobody send me files?
Mitch yazdıFind:
foreach (var info in nextClipInfo) { float weight = info.weight * layerWeight; if (weight == 0) continue;
Replace with:
foreach (var info in nextClipInfo) { float weight = info.weight * layerWeight; if (weight == 0 || weight == 1) continue;
Oh, thank you very much! It helped!
You are awesome!