Reformat promise

This commit is contained in:
Idrees Hassan
2025-10-26 12:19:25 -04:00
parent 6124fcd969
commit 4b206f638d
4 changed files with 20 additions and 8 deletions

View File

@@ -478,8 +478,12 @@ function loadSpriteSheetPixels(dataUri, templateColors = true) {
log("Loading sprite sheets...");
// @ts-expect-error
Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATIONS_SPRITE_SHEET, false), loadSpriteSheetPixels(FEATHER_SPRITE_SHEET)]).then(([birbPixels, decorationPixels, featherPixels]) => {
Promise.all([
loadSpriteSheetPixels(SPRITE_SHEET),
loadSpriteSheetPixels(DECORATIONS_SPRITE_SHEET, false),
loadSpriteSheetPixels(FEATHER_SPRITE_SHEET)
]).then(([birbPixels, decorationPixels, featherPixels]) => {
const SPRITE_SHEET = birbPixels;
const DECORATIONS_SPRITE_SHEET = decorationPixels;
const FEATHER_SPRITE_SHEET = featherPixels;