mirror of https://github.com/axmolengine/axmol.git
Merge pull request #696 from nkostelnik/master
fixed #961: Fixed mad behaviour in second stage of CCEaseBackInOut
This commit is contained in:
commit
c1a53e2ed7
|
@ -1394,7 +1394,7 @@ namespace cocos2d {
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
time = time - 2;
|
time = time - 2;
|
||||||
m_pOther->update((time * time * ((overshoot + 1) + overshoot)) / 2 + 1);
|
m_pOther->update((time * time * ((overshoot + 1) * time + overshoot)) / 2 + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue