diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 23:48:04 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 23:48:04 -0700 |
commit | 634b2c1b69b9cc107546b12e710fc2daec53fcec (patch) | |
tree | 27b3396a227ace81fea583c62fbb36458cb1eebe /src/engine/config | |
parent | ea6c1eef48ba8d39defdd8cd78adc45ae660caf9 (diff) | |
download | the-abstraction-engine-634b2c1b69b9cc107546b12e710fc2daec53fcec.tar.gz the-abstraction-engine-634b2c1b69b9cc107546b12e710fc2daec53fcec.zip |
minor bug fixes
Diffstat (limited to 'src/engine/config')
-rw-r--r-- | src/engine/config/sprites.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/config/sprites.ts b/src/engine/config/sprites.ts index 0a4f9b5..3614488 100644 --- a/src/engine/config/sprites.ts +++ b/src/engine/config/sprites.ts @@ -110,10 +110,10 @@ const bubbleSpriteSpec = { SPRITE_SPECS.set(Sprites.BUBBLE, bubbleSpriteSpec); const portalSpriteSpec = { - msPerFrame: 200, + msPerFrame: 150, width: 64, height: 64, - frames: 3, + frames: 9, sheet: "/assets/portal.png", }; SPRITE_SPECS.set(Sprites.PORTAL, portalSpriteSpec); |