Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
Fix crash on KeyFramedObject applied (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
renyu-io authored Jun 15, 2017
1 parent d6ae643 commit 2b96eae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public KeyFramedObject(List<T> objects, float[][][] timingCurves) {
}

mFirstDescribedFrame = mObjects.keyAt(0);
mLastDescribedFrame = mObjects.keyAt(listSize - 1);
mLastDescribedFrame = mObjects.keyAt(mObjects.size() - 1);
mInterpolators = KeyFrameAnimationHelper.buildInterpolatorList(timingCurves);
}

Expand Down

0 comments on commit 2b96eae

Please sign in to comment.