phaser-plugin-follow

Let objects follow other objects

Usage no npm install needed!

<script type="module">
  import phaserPluginFollow from 'https://cdn.skypack.dev/phaser-plugin-follow';
</script>

README

Phaser 3 Follow Plugin

new Phaser.Game({
  plugins: {
    scene: [{ key: 'FollowPlugin', plugin: PhaserFollowPlugin, mapping: 'follow' }]
  }
});

PhaserFollowPlugin is a global reference to the plugin class. The package module exports the same value.

In a scene:

this.follow.add(follower, {
  target: target, // Required.
  offsetX: 0,
  offsetY: 0,
  rotate: false,
  rotateOffset: false
});

this.follow.pause(follower);

this.follow.resume(follower);

this.follow.remove(follower);