Image Update

This commit is contained in:
2021-06-12 07:54:22 -07:00
parent f6fdec2db2
commit 928c3c838e
10 changed files with 106 additions and 14 deletions

View File

@ -9,10 +9,17 @@ const IMAGES_ROOT = path.join(...[
'characters',
'penny',
'Sample sets',
'Eyes'
'Mouth'
]);
const FILE_OUT =
const FILE_OUT = path.join(...[
'.',
'assets',
'characters',
'penny',
'textures',
'mouth.png'
])
// Code
@ -84,5 +91,6 @@ const imageWrite = (image, file) => new Promise(resolve => {
}
};
console.log('Writing');
await imageWrite(stitched, FILE_OUT);
})().catch(console.error);