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
| (() => { | |
| "use strict"; | |
| /* | |
| * Mixamo bulk animation downloader | |
| * | |
| * Supports: | |
| * - Individual animations | |
| * - Animation packs | |
| * - 96 results per page |
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
| // resource: http://ktkr3d.github.io/2020/01/27/Puppeteer-on-WSL/ | |
| // install puppeteer | |
| // > npm i -g puppeteer | |
| // use chrome from windows: add this to ~/.profile | |
| // PATH=/mnt/c/Program\ Files\ \(x86\)/Google/Chrome/Application:$PATH | |
| const puppeteer = require('puppeteer'); |