vite-plugin-excalibur-hmr
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

vite-plugin-excalibur-hmr

Adds scene hot reloading to Excalibur.js games.

This does not support hot reloading of actors, only scenes. When you make a change that affects a scene it will reload it without restarting the game.

It's mainly a proof-of-concept, but so there's probably issues, but it should work well enough for most cases.

Installation

npm install -d vite-plugin-excalibur-hmr

Usage

  1. Add the plugin to your vite config:
import { defineConfig } from "vite"
import hmr from "vite-plugin-excalibur-hmr"

export default defineConfig({
  plugins: [hmr()],
})
  1. Mark your engine as hot reloadable:
import hot from "vite-plugin-excalibur-hmr/hot"

const engine = new ex.Engine({
  // ...
})

if (import.meta.env.DEV) {
  hot(engine)
}

Making Scenes Hot Reloadable

In order for Scenes to be hot-reloadable, they must a default export in a file that is either under a scenes directory or ends with a .scene.ts or .scene.js extension.

Example:

// src/scenes/level1.ts or src/level1.scene.ts
import { Scene } from "excalibur"

export default class Level1 extends Scene {
  // ...
}

Whenever changes are made to the scene or any of its imported modules the scene will be hot reloaded in the engine. If that scene is currently active then it will restart.

Readme

Keywords

none

Package Sidebar

Install

npm i vite-plugin-excalibur-hmr

Weekly Downloads

0

Version

0.0.3

License

ISC

Unpacked Size

8.31 kB

Total Files

6

Last publish

Collaborators

  • mattjennings