├── .github └── workflows │ ├── game-workflow.yml │ └── main.yml ├── LICENSE ├── README.md ├── bubbo-bubbo ├── .assetpack.js ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── raw-assets │ ├── audio │ │ ├── bubble-land-sfx.wav │ │ ├── bubbles-falling.wav │ │ ├── bubbo-bubbo-bg-music.wav │ │ ├── cannon-move.wav │ │ ├── powerup-bomb.wav │ │ ├── powerup-super.wav │ │ ├── powerup-time.wav │ │ ├── primary-button-press.wav │ │ └── secondary-button-press.wav │ ├── fonts │ │ ├── Bungee-Regular{wf}.ttf │ │ └── OpenSans-SemiBold{wf}.ttf │ └── images │ │ ├── favicon.png │ │ ├── game-screen{m}{tps} │ │ ├── bottom-tray.png │ │ ├── bubble-bomb.png │ │ ├── bubble-glow.png │ │ ├── bubble-reserve-base.png │ │ ├── bubble-reserve-ring.png │ │ ├── bubble-super.png │ │ ├── bubble-timer.png │ │ ├── button-flat-small.png │ │ ├── button-flat.png │ │ ├── game-side-border.png │ │ ├── icon-pause.png │ │ ├── info-bg.png │ │ ├── laser-line-glow.png │ │ ├── laser-line.png │ │ ├── panel-small-instructions.png │ │ ├── rounded-tray.png │ │ ├── satellite.png │ │ ├── shot-visualiser.png │ │ └── top-tray.png │ │ ├── pause-overlay{m} │ │ └── pause-panel.png │ │ ├── preload{m}{tps} │ │ ├── background-tile.png │ │ ├── bubble-blue.png │ │ ├── bubble-green.png │ │ ├── bubble-red.png │ │ ├── bubble-shadow.png │ │ ├── bubble-shine.png │ │ ├── bubble-yellow.png │ │ ├── cannon-arrow.png │ │ ├── cannon-barrel.png │ │ ├── cannon-main.png │ │ ├── cannon-top.png │ │ ├── loading-circle.png │ │ └── pixi-logo.png │ │ ├── results-screen{m}{tps} │ │ ├── icon-back.png │ │ ├── panel-end-screen-base.png │ │ ├── panel-end-screen-points-breakdown.png │ │ └── panel-end-screen-points-total.png │ │ └── title-screen{m}{tps} │ │ ├── background-tile-space.png │ │ ├── icon-sound-off.png │ │ ├── icon-sound-on.png │ │ ├── pixi-btn-down.png │ │ ├── pixi-btn-up.png │ │ ├── play-btn-down.png │ │ └── play-btn-up.png ├── src │ ├── assets.ts │ ├── audio.ts │ ├── game │ │ ├── Game.ts │ │ ├── Pool.ts │ │ ├── Stats.ts │ │ ├── SystemRunner.ts │ │ ├── boardConfig.ts │ │ ├── designConfig.ts │ │ ├── entities │ │ │ ├── Bubble.ts │ │ │ ├── BubbleLine.ts │ │ │ ├── BubbleReserve.ts │ │ │ ├── BubbleView.ts │ │ │ ├── Cannon.ts │ │ │ └── PhysicsBody.ts │ │ └── systems │ │ │ ├── AimSystem.ts │ │ │ ├── CannonSystem.ts │ │ │ ├── EffectsSystem.ts │ │ │ ├── HudSystem.ts │ │ │ ├── LevelSystem.ts │ │ │ ├── PauseSystem.ts │ │ │ ├── PhysicsSystem.ts │ │ │ ├── PowerSystem.ts │ │ │ ├── ScoreSystem.ts │ │ │ └── SpaceDecorSystem.ts │ ├── main.ts │ ├── navigation.ts │ ├── screens │ │ ├── GameScreen.ts │ │ ├── LoadScreen.ts │ │ ├── ResultScreen.ts │ │ ├── TitleScreen.ts │ │ └── overlays │ │ │ └── PauseOverlay.ts │ ├── storage.ts │ ├── ui │ │ ├── HelperPanel.ts │ │ ├── LaserLine.ts │ │ ├── PixiLogo.ts │ │ ├── PointToaster.ts │ │ ├── Porthole.ts │ │ ├── ScoreCounter.ts │ │ ├── Title.ts │ │ └── buttons │ │ │ ├── AudioButton.ts │ │ │ ├── AudioSecondaryButton.ts │ │ │ ├── IconButton.ts │ │ │ ├── PrimaryButton.ts │ │ │ ├── SecondaryButton.ts │ │ │ └── configs │ │ │ └── animationConfig.ts │ └── utils │ │ ├── device.ts │ │ ├── i18n-en.ts │ │ ├── i18n.ts │ │ ├── maths │ │ ├── Vector2.ts │ │ ├── maths.ts │ │ ├── point.ts │ │ ├── rand.ts │ │ └── time.ts │ │ ├── throttle.ts │ │ └── utils.ts └── tsconfig.json └── puzzling-potions ├── .assetpack.js ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── raw-assets ├── common{m} │ ├── bgm-game.mp3 │ ├── bgm-main.mp3 │ ├── common-atlas{tps} │ │ ├── button-large-hover.png │ │ ├── button-large-press.png │ │ ├── button-large.png │ │ ├── button-small-hover.png │ │ ├── button-small-press.png │ │ ├── button-small.png │ │ ├── character.png │ │ ├── icon-back-stroke.png │ │ ├── icon-back.png │ │ ├── icon-info-stroke.png │ │ ├── icon-info.png │ │ ├── icon-pause-stroke.png │ │ ├── icon-pause.png │ │ ├── icon-settings-stroke.png │ │ ├── icon-settings.png │ │ ├── rounded-rectangle.png │ │ ├── star.png │ │ └── white-cauldron.png │ ├── dragon-skeleton.atlas │ ├── dragon-skeleton.json │ ├── dragon-skeleton.png │ ├── sfx-bubble.wav │ ├── sfx-correct.wav │ ├── sfx-countdown.wav │ ├── sfx-hover.wav │ ├── sfx-incorrect.wav │ ├── sfx-match.wav │ ├── sfx-points.wav │ ├── sfx-press.wav │ └── sfx-special.wav ├── game{m} │ └── game-atlas{tps} │ │ ├── books-01.png │ │ ├── books-02.png │ │ ├── books-03.png │ │ ├── books-04.png │ │ ├── books-05.png │ │ ├── game-header.png │ │ ├── highlight.png │ │ ├── num-stroke-1.png │ │ ├── num-stroke-2.png │ │ ├── num-stroke-3.png │ │ ├── num-stroke-4.png │ │ ├── num-stroke-5.png │ │ ├── piece-dragon.png │ │ ├── piece-frog.png │ │ ├── piece-newt.png │ │ ├── piece-snake.png │ │ ├── piece-spider.png │ │ ├── piece-yeti.png │ │ ├── shelf-block.png │ │ ├── shelf-corner.png │ │ ├── special-blast.png │ │ ├── special-colour.png │ │ ├── special-column.png │ │ └── special-row.png ├── home{m} │ └── home-atlas{tps} │ │ └── logo-game.png ├── preload{m} │ ├── cauldron-skeleton.atlas │ ├── cauldron-skeleton.json │ ├── cauldron-skeleton.png │ └── preload-atlas{tps} │ │ ├── background.png │ │ ├── circle.png │ │ └── logo-pixi.png └── result{m} │ └── result-atlas{tps} │ └── result-base.png ├── src ├── main.ts ├── match3 │ ├── Match3.ts │ ├── Match3Actions.ts │ ├── Match3Board.ts │ ├── Match3Config.ts │ ├── Match3Piece.ts │ ├── Match3Process.ts │ ├── Match3Special.ts │ ├── Match3Stats.ts │ ├── Match3Timer.ts │ ├── Match3Utility.ts │ └── specials │ │ ├── Match3SpecialBlast.ts │ │ ├── Match3SpecialColour.ts │ │ ├── Match3SpecialColumn.ts │ │ └── Match3SpecialRow.ts ├── popups │ ├── InfoPopup.ts │ ├── PausePopup.ts │ └── SettingsPopup.ts ├── screens │ ├── GameScreen.ts │ ├── HomeScreen.ts │ ├── LoadScreen.ts │ └── ResultScreen.ts ├── ui │ ├── Cauldron.ts │ ├── Cloud.ts │ ├── CloudLabel.ts │ ├── Dragon.ts │ ├── GameCountdown.ts │ ├── GameEffects.ts │ ├── GameOvertime.ts │ ├── GameScore.ts │ ├── GameTimer.ts │ ├── GameTimesUp.ts │ ├── ImageButton.ts │ ├── Label.ts │ ├── LargeButton.ts │ ├── Logo.ts │ ├── MaskTransition.ts │ ├── ModeSwitcher.ts │ ├── PixiLogo.ts │ ├── PopExplosion.ts │ ├── ResultScore.ts │ ├── ResultStars.ts │ ├── RippleButton.ts │ ├── RoundedBox.ts │ ├── Shelf.ts │ ├── SmallButton.ts │ ├── SmokeCloud.ts │ ├── Star.ts │ ├── TiledBackground.ts │ └── VolumeSlider.ts └── utils │ ├── animation.ts │ ├── assets.ts │ ├── asyncUtils.ts │ ├── audio.ts │ ├── getUrlParams.ts │ ├── i18n.ts │ ├── maths.ts │ ├── navigation.ts │ ├── pool.ts │ ├── random.ts │ ├── storage.ts │ ├── throttle.ts │ ├── typings.d.ts │ ├── userSettings.ts │ └── userStats.ts ├── tsconfig.json └── vite.config.js /.github/workflows/game-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/.github/workflows/game-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/README.md -------------------------------------------------------------------------------- /bubbo-bubbo/.assetpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/.assetpack.js -------------------------------------------------------------------------------- /bubbo-bubbo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/.eslintrc.json -------------------------------------------------------------------------------- /bubbo-bubbo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/.gitignore -------------------------------------------------------------------------------- /bubbo-bubbo/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/.prettierrc -------------------------------------------------------------------------------- /bubbo-bubbo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/LICENSE -------------------------------------------------------------------------------- /bubbo-bubbo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/README.md -------------------------------------------------------------------------------- /bubbo-bubbo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/index.html -------------------------------------------------------------------------------- /bubbo-bubbo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/package-lock.json -------------------------------------------------------------------------------- /bubbo-bubbo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/package.json -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/bubble-land-sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/bubble-land-sfx.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/bubbles-falling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/bubbles-falling.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/bubbo-bubbo-bg-music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/bubbo-bubbo-bg-music.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/cannon-move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/cannon-move.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/powerup-bomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/powerup-bomb.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/powerup-super.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/powerup-super.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/powerup-time.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/powerup-time.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/primary-button-press.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/primary-button-press.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/audio/secondary-button-press.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/audio/secondary-button-press.wav -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/fonts/Bungee-Regular{wf}.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/fonts/Bungee-Regular{wf}.ttf -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/fonts/OpenSans-SemiBold{wf}.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/fonts/OpenSans-SemiBold{wf}.ttf -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/favicon.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bottom-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bottom-tray.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-bomb.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-glow.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-reserve-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-reserve-base.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-reserve-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-reserve-ring.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-super.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/bubble-timer.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/button-flat-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/button-flat-small.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/button-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/button-flat.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/game-side-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/game-side-border.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/icon-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/icon-pause.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/info-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/info-bg.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/laser-line-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/laser-line-glow.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/laser-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/laser-line.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/panel-small-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/panel-small-instructions.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/rounded-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/rounded-tray.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/satellite.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/shot-visualiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/shot-visualiser.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/top-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/game-screen{m}{tps}/top-tray.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/pause-overlay{m}/pause-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/pause-overlay{m}/pause-panel.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/background-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/background-tile.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-blue.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-green.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-red.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-shadow.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-shine.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/bubble-yellow.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-arrow.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-barrel.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-main.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/cannon-top.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/loading-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/loading-circle.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/preload{m}{tps}/pixi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/preload{m}{tps}/pixi-logo.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/icon-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/icon-back.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-base.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-points-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-points-breakdown.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-points-total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/results-screen{m}{tps}/panel-end-screen-points-total.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/background-tile-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/background-tile-space.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/icon-sound-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/icon-sound-off.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/icon-sound-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/icon-sound-on.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/pixi-btn-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/pixi-btn-down.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/pixi-btn-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/pixi-btn-up.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/play-btn-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/play-btn-down.png -------------------------------------------------------------------------------- /bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/play-btn-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/raw-assets/images/title-screen{m}{tps}/play-btn-up.png -------------------------------------------------------------------------------- /bubbo-bubbo/src/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/assets.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/audio.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/Game.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/Pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/Pool.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/Stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/Stats.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/SystemRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/SystemRunner.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/boardConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/boardConfig.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/designConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/designConfig.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/Bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/Bubble.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/BubbleLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/BubbleLine.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/BubbleReserve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/BubbleReserve.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/BubbleView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/BubbleView.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/Cannon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/Cannon.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/entities/PhysicsBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/entities/PhysicsBody.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/AimSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/AimSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/CannonSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/CannonSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/EffectsSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/EffectsSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/HudSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/HudSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/LevelSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/LevelSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/PauseSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/PauseSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/PhysicsSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/PhysicsSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/PowerSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/PowerSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/ScoreSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/ScoreSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/game/systems/SpaceDecorSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/game/systems/SpaceDecorSystem.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/main.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/navigation.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/screens/GameScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/screens/GameScreen.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/screens/LoadScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/screens/LoadScreen.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/screens/ResultScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/screens/ResultScreen.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/screens/TitleScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/screens/TitleScreen.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/screens/overlays/PauseOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/screens/overlays/PauseOverlay.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/storage.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/HelperPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/HelperPanel.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/LaserLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/LaserLine.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/PixiLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/PixiLogo.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/PointToaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/PointToaster.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/Porthole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/Porthole.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/ScoreCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/ScoreCounter.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/Title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/Title.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/AudioButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/AudioButton.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/AudioSecondaryButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/AudioSecondaryButton.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/IconButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/IconButton.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/PrimaryButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/PrimaryButton.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/SecondaryButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/SecondaryButton.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/ui/buttons/configs/animationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/ui/buttons/configs/animationConfig.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/device.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/i18n-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/i18n-en.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/i18n.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/maths/Vector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/maths/Vector2.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/maths/maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/maths/maths.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/maths/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/maths/point.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/maths/rand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/maths/rand.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/maths/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/maths/time.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/throttle.ts -------------------------------------------------------------------------------- /bubbo-bubbo/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/src/utils/utils.ts -------------------------------------------------------------------------------- /bubbo-bubbo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/bubbo-bubbo/tsconfig.json -------------------------------------------------------------------------------- /puzzling-potions/.assetpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/.assetpack.js -------------------------------------------------------------------------------- /puzzling-potions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/.eslintrc.json -------------------------------------------------------------------------------- /puzzling-potions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/.gitignore -------------------------------------------------------------------------------- /puzzling-potions/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/.prettierrc -------------------------------------------------------------------------------- /puzzling-potions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/LICENSE -------------------------------------------------------------------------------- /puzzling-potions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/README.md -------------------------------------------------------------------------------- /puzzling-potions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/index.html -------------------------------------------------------------------------------- /puzzling-potions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/package-lock.json -------------------------------------------------------------------------------- /puzzling-potions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/package.json -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/bgm-game.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/bgm-game.mp3 -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/bgm-main.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/bgm-main.mp3 -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large-hover.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large-press.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-large.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small-hover.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small-press.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/button-small.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/character.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-back-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-back-stroke.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-back.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-info-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-info-stroke.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-info.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-pause-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-pause-stroke.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-pause.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-settings-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-settings-stroke.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/icon-settings.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/rounded-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/rounded-rectangle.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/star.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/common-atlas{tps}/white-cauldron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/common-atlas{tps}/white-cauldron.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/dragon-skeleton.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/dragon-skeleton.atlas -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/dragon-skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/dragon-skeleton.json -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/dragon-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/dragon-skeleton.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-bubble.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-bubble.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-correct.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-correct.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-countdown.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-countdown.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-hover.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-incorrect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-incorrect.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-match.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-match.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-points.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-points.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-press.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-press.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/common{m}/sfx-special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/common{m}/sfx-special.wav -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-01.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-02.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-03.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-04.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/books-05.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/game-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/game-header.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/highlight.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-1.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-2.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-3.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-4.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/num-stroke-5.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-dragon.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-frog.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-newt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-newt.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-snake.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-spider.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-yeti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/piece-yeti.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/shelf-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/shelf-block.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/shelf-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/shelf-corner.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-blast.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-colour.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-column.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/game{m}/game-atlas{tps}/special-row.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/home{m}/home-atlas{tps}/logo-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/home{m}/home-atlas{tps}/logo-game.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.atlas -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.json -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/cauldron-skeleton.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/background.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/circle.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/logo-pixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/preload{m}/preload-atlas{tps}/logo-pixi.png -------------------------------------------------------------------------------- /puzzling-potions/raw-assets/result{m}/result-atlas{tps}/result-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/raw-assets/result{m}/result-atlas{tps}/result-base.png -------------------------------------------------------------------------------- /puzzling-potions/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/main.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Actions.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Board.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Config.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Piece.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Piece.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Process.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Special.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Special.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Stats.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Timer.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/Match3Utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/Match3Utility.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/specials/Match3SpecialBlast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/specials/Match3SpecialBlast.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/specials/Match3SpecialColour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/specials/Match3SpecialColour.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/specials/Match3SpecialColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/specials/Match3SpecialColumn.ts -------------------------------------------------------------------------------- /puzzling-potions/src/match3/specials/Match3SpecialRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/match3/specials/Match3SpecialRow.ts -------------------------------------------------------------------------------- /puzzling-potions/src/popups/InfoPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/popups/InfoPopup.ts -------------------------------------------------------------------------------- /puzzling-potions/src/popups/PausePopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/popups/PausePopup.ts -------------------------------------------------------------------------------- /puzzling-potions/src/popups/SettingsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/popups/SettingsPopup.ts -------------------------------------------------------------------------------- /puzzling-potions/src/screens/GameScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/screens/GameScreen.ts -------------------------------------------------------------------------------- /puzzling-potions/src/screens/HomeScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/screens/HomeScreen.ts -------------------------------------------------------------------------------- /puzzling-potions/src/screens/LoadScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/screens/LoadScreen.ts -------------------------------------------------------------------------------- /puzzling-potions/src/screens/ResultScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/screens/ResultScreen.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Cauldron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Cauldron.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Cloud.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/CloudLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/CloudLabel.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Dragon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Dragon.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameCountdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameCountdown.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameEffects.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameOvertime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameOvertime.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameScore.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameTimer.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/GameTimesUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/GameTimesUp.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/ImageButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/ImageButton.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Label.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/LargeButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/LargeButton.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Logo.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/MaskTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/MaskTransition.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/ModeSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/ModeSwitcher.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/PixiLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/PixiLogo.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/PopExplosion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/PopExplosion.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/ResultScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/ResultScore.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/ResultStars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/ResultStars.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/RippleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/RippleButton.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/RoundedBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/RoundedBox.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Shelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Shelf.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/SmallButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/SmallButton.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/SmokeCloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/SmokeCloud.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/Star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/Star.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/TiledBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/TiledBackground.ts -------------------------------------------------------------------------------- /puzzling-potions/src/ui/VolumeSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/ui/VolumeSlider.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/animation.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/assets.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/asyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/asyncUtils.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/audio.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/getUrlParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/getUrlParams.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/i18n.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/maths.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/navigation.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/pool.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/random.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/storage.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/throttle.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/typings.d.ts: -------------------------------------------------------------------------------- 1 | /** Injected by ViteJS define plugin */ 2 | declare const APP_VERSION: string; 3 | -------------------------------------------------------------------------------- /puzzling-potions/src/utils/userSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/userSettings.ts -------------------------------------------------------------------------------- /puzzling-potions/src/utils/userStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/src/utils/userStats.ts -------------------------------------------------------------------------------- /puzzling-potions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/tsconfig.json -------------------------------------------------------------------------------- /puzzling-potions/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs/open-games/HEAD/puzzling-potions/vite.config.js --------------------------------------------------------------------------------