孙广东 2016.4.1 愚人节
两种方式:
1、更改源代码: 两个地方 (不推荐,修改源代码不是好事!)
在 SkeletonComponent.cs 中添加这 ︰
public bool ignoreTimeScale; // Now in line 45
// Inside Update
float delta = Time.deltaTime; // Line 135
if (ignoreTimeScale && Application.isPlaying) //To not take effect in editor
{
float timeNow = Time.realtimeSinceStartup;
delta = timeNow - lastInterval;
lastInterval = timeNow;
}
UpdateSkeleton(delta); // Line 144
在 SkeletonAnimationInspector.cs: