This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Es necesario incluir la librería de CCapture dentro de tu proyecto: https://github.com/spite/ccapture.js/ | |
| let capturer | |
| let renderer | |
| let duration = 120 | |
| function setup() { | |
| renderer = createCanvas(400, 400) | |
| capturer = new CCapture( { format: 'png', framerate: 60, quality: 30 } ) | |
| frameRate(60) |
OlderNewer