npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

miaoda-game-combat2d-phaser

v0.2.0

Published

Phaser 4 Scene host for miaoda-game-combat2d-core with Game Object-bound hitboxes and hurtboxes.

Downloads

493

Readme

miaoda-game-combat2d-phaser

Use this Phaser 4 adapter to bind combat boxes to Game Objects, synchronize their world positions, and deliver miaoda-game-combat2d-core hit events during Scene updates.

Install

pnpm add miaoda-game-combat2d-core miaoda-game-combat2d-phaser phaser

Create and bind a combat world

Register Combat2dPlugin as a Scene Plugin and create one world per independent arena:

const combat = this.combat2d.create({ defaultIframes: 6 });
combat.bindHurtbox(enemyHurtbox, enemy);
combat.bindHitbox(swordHitbox, player, { x: 30, y: 0 });
combat.onHit((hit) => applyDamage(hit.target, hit.damage));

The adapter reads bound object positions before resolving each Scene update. defaultIframes counts logic frames. Objects with active === false or no Scene are unbound automatically.

Use an external physics broadphase

For large scenes, let Arcade or Matter produce candidate pairs and configure external resolution:

const combat = this.combat2d.create({ resolution: 'external' });
const contacts = collectPhysicsContacts();

// Once after the physics step in each logic frame:
combat.resolveContacts(contacts);

External contacts still go through masks, attack deduplication, invincibility frames, and pierce limits. With resolution: 'external', the adapter does not also run its all-pairs geometry scan.

Lifecycle and control

combat.setTicking(false); // pause synchronization and resolution
combat.setTicking(true);
combat.remove('sword');
combat.core.resetAttack('swing-42');

update receives Phaser milliseconds and ignores non-positive or non-finite values. destroy() is idempotent and terminal: it removes Scene listeners, bindings, callbacks, and boxes. The adapter reports accepted hits; your game decides damage, status effects, knockback, and presentation.