* Plays an animated GIF that was paused with * img.pause() . * * @example * let gif; * * async function setup() { * // Load the image. * gif = await loadImage('assets/nancy-liang-wind-loop-forever.gif'); * * createCanvas(100, 100);
()
| 1678 | * } |
| 1679 | */ |
| 1680 | play() { |
| 1681 | if (this.gifProperties) { |
| 1682 | this.gifProperties.playing = true; |
| 1683 | } |
| 1684 | } |
| 1685 | |
| 1686 | /** |
| 1687 | * Pauses an animated GIF. |
no outgoing calls
no test coverage detected