2.0.2 • Published 5 years ago

phaser-plugin-follow v2.0.2

Weekly downloads
7
License
ISC
Repository
github
Last release
5 years ago

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);