Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 550 Bytes

File metadata and controls

30 lines (23 loc) · 550 Bytes

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