Skip to content

Commit 88344d0

Browse files
authored
Merge pull request phaserjs#2939 from nervestaple/patch-1
undefined-checking skipframes
2 parents 5d280a6 + 7a554fe commit 88344d0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

v2-community/src/animation/AnimationParser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Phaser.AnimationParser = {
3131
if (frameMax === undefined) { frameMax = -1; }
3232
if (margin === undefined) { margin = 0; }
3333
if (spacing === undefined) { spacing = 0; }
34+
if (skipFrames === undefined) { skipFrames = 0; }
3435

3536
var img = key;
3637

0 commit comments

Comments
 (0)