Navigation
These archived docs are for Phaser 2.6.2 Phaser 3 docs can be found on newdocs.phaser.io.
Phaser CE docs can be found on the Phaser CE Documentation site.

Constructor

Phaser.Plugin. PathManager

new PathManager(game, parent)

PathManager controls a list of Paths and a list of PathFollowers.
It is the central control for the majority of the Pathing API.

Parameters
Name Type Description
game Phaser.Game

A reference to the current Phaser.Game instance.

parent Phaser.PluginManager

The Phaser Plugin Manager which looks after this plugin.

Source code: plugins/path/PathManagerPlugin.js (Line 17)

Public Methods

createPathsFromJSON()

create a new Path from JSON data

JSON data format:
required: "coordinateSystem":, "smoothness":, "loops":, "speed":, "pointList":[ {"x":, "y":}, ... ]
optional: "branchFrom": { "path":, "point": }, "joinTo": { "path":, "point": }

Source code: plugins/path/PathManagerPlugin.js (Line 47)