Preparing more documentation.

This commit is contained in:
Richard Davey
2013-10-02 01:16:40 +01:00
parent 7c7cd8b01d
commit e5b1faace6
163 changed files with 214643 additions and 24491 deletions
+9 -2
View File
@@ -5,8 +5,6 @@
* @module Phaser.PluginManager
*/
// TODO: We can optimise this a lot by using separate hashes per function (update, render, etc)
/**
* Description.
*
@@ -48,6 +46,8 @@ Phaser.PluginManager.prototype = {
/**
* Add a new Plugin to the PluginManager.
* The plugin's game and parent reference are set to this game and pluginmanager parent.
* @method add
* @memberof Phaser.PluginManager
* @param {Phaser.Plugin} plugin - Description.
* @return {Phaser.Plugin} Description.
*/
@@ -115,6 +115,8 @@ Phaser.PluginManager.prototype = {
/**
* Remove a Plugin from the PluginManager.
* @method remove
* @memberof Phaser.PluginManager
* @param {Phaser.Plugin} plugin - Description.
*/
remove: function (plugin) {
@@ -128,6 +130,7 @@ Phaser.PluginManager.prototype = {
* Description.
*
* @method preUpdate
* @memberof Phaser.PluginManager
*/
preUpdate: function () {
@@ -150,6 +153,7 @@ Phaser.PluginManager.prototype = {
* Description.
*
* @method update
* @memberof Phaser.PluginManager
*/
update: function () {
@@ -172,6 +176,7 @@ Phaser.PluginManager.prototype = {
* Description.
*
* @method render
* @memberof Phaser.PluginManager
*/
render: function () {
@@ -194,6 +199,7 @@ Phaser.PluginManager.prototype = {
* Description.
*
* @method postRender
* @memberof Phaser.PluginManager
*/
postRender: function () {
@@ -216,6 +222,7 @@ Phaser.PluginManager.prototype = {
* Description.
*
* @method destroy
* @memberof Phaser.PluginManager
*/
destroy: function () {