mirror of
https://github.com/wassname/phaser.git
synced 2026-06-28 16:20:37 +08:00
Fixes numeric frame indexes on animations
This commit is contained in:
@@ -209,7 +209,7 @@ Phaser.Animation.FrameData.prototype = {
|
||||
// Does the frames array contain names or indexes?
|
||||
if (useNumericIndex)
|
||||
{
|
||||
output.push(frames[i].index);
|
||||
output.push(frames[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user