PluginManager#remove()
  • References/Game Development/Phaser/Plugins/PluginManager

remove(plugin, destroy) Remove a Plugin from the PluginManager. It calls Plugin.destroy on the plugin

2025-01-10 15:47:30
PluginManager#update()
  • References/Game Development/Phaser/Plugins/PluginManager

update() Update is called after all the core subsystems (Input, Tweens, Sound, etc) and the State have updated, but before the render

2025-01-10 15:47:30
PluginManager#removeAll()
  • References/Game Development/Phaser/Plugins/PluginManager

removeAll() Remove all Plugins from the PluginManager. It calls Plugin.destroy on every plugin before removing it from the manager.

2025-01-10 15:47:30
PluginManager#plugins
  • References/Game Development/Phaser/Plugins/PluginManager

plugins : Array.<Phaser.Plugin> An array of

2025-01-10 15:47:30
PluginManager#game
  • References/Game Development/Phaser/Plugins/PluginManager

game : Phaser.Game A reference to the currently running game

2025-01-10 15:47:30
PluginManager#render()
  • References/Game Development/Phaser/Plugins/PluginManager

render() Render is called right after the Game Renderer completes, but before the State.render.It only calls plugins who have

2025-01-10 15:47:30
PluginManager#preUpdate()
  • References/Game Development/Phaser/Plugins/PluginManager

preUpdate() Pre-update is called at the very start of the update cycle, before any other subsystems have been updated (including Physics)

2025-01-10 15:47:30
PluginManager#add()
  • References/Game Development/Phaser/Plugins/PluginManager

add(plugin, parameter) → {Phaser.Plugin}

2025-01-10 15:47:30
PluginManager#postUpdate()
  • References/Game Development/Phaser/Plugins/PluginManager

postUpdate() PostUpdate is the last thing to be called before the world render.In particular, it is called after the world postUpdate

2025-01-10 15:47:30
PluginManager#postRender()
  • References/Game Development/Phaser/Plugins/PluginManager

postRender() Post-render is called after the Game Renderer and State.render have run.It only calls plugins who have visible=true

2025-01-10 15:47:30