phaser-docs.json 1.1 KB

1234567891011
  1. {
  2. "Phaser.Types.Animations.Animation.key": "The key that the animation will be associated with. i.e. sprite.animations.play(key)",
  3. "Phaser.Types.Animations.Animation.frameRate": "The frame rate of playback in frames per second (default 24 if duration is null)",
  4. "Phaser.Types.Animations.Animation.delay": "Delay before starting playback. Value given in milliseconds.",
  5. "Phaser.Types.Animations.Animation.repeat": "Number of times to repeat the animation (-1 for infinity)",
  6. "Phaser.Types.Animations.Animation.repeatDelay": "Delay before the animation repeats. Value given in milliseconds.",
  7. "Phaser.Types.Animations.Animation.yoyo": "Should the animation yoyo? (reverse back down to the start) before repeating?",
  8. "Phaser.Types.Animations.Animation.showOnStart": "Should sprite.visible = true when the animation starts to play?",
  9. "Phaser.Types.Animations.Animation.hideOnComplete": "Should sprite.visible = false when the animation finishes?",
  10. "Phaser.Types.Animations.Animation.skipMissedFrames": "Skip frames if the time lags, or always advanced anyway?"
  11. }