Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi @Shallan, I cannot make aseparse65 work... First time using node actually, so perhaps there is something missing on my setup (using Linux):

node ../_include/aseparse65/asp65 sprites -i ./assets/sprite.aseprite -d -p -o ./assets/sprites -s 2
internal/modules/cjs/loader.js:638
     throw err;
     ^  
Error: Cannot find module 'ase-parser'
     at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
     at Function.Module._load (internal/modules/cjs/loader.js:562:25)
     at Module.require (internal/modules/cjs/loader.js:692:17)
     at require (internal/modules/cjs/helpers.js:25:18)
     at Object.<anonymous> (/home/riq/src/mega65/M65_Examples/_include/aseparse65/asp65.js:1:18)
     at Module._compile (internal/modules/cjs/loader.js:778:30)
     at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
     at Module.load (internal/modules/cjs/loader.js:653:32)
     at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
     at Function.Module._load (internal/modules/cjs/loader.js:585:3)</anonymous>


Any ideas? thanks!

(+1)

Once you have node installed , navigate to the aseparse65 folder in a command prompt/terminal and type:

npm install

This will install the dependencies required to run the parser. Please not however the parser is very WIP I just shared to give a starting point for people, it may or may not suit your needs

yay, it is working now :) ty!