More docs coming on.

This commit is contained in:
Richard Davey
2013-10-01 16:39:39 +01:00
parent a38ad2d1a9
commit ca113b85aa
80 changed files with 10121 additions and 4763 deletions
+6 -6
View File
@@ -29,37 +29,37 @@ Phaser.Plugin = function (game, parent) {
this.parent = parent;
/**
* @property {bool} active - Description.
* @property {boolean} active - Description.
* @default
*/
this.active = false;
/**
* @property {bool} visible - Description.
* @property {boolean} visible - Description.
* @default
*/
this.visible = false;
/**
* @property {bool} hasPreUpdate - Description.
* @property {boolean} hasPreUpdate - Description.
* @default
*/
this.hasPreUpdate = false;
/**
* @property {bool} hasUpdate - Description.
* @property {boolean} hasUpdate - Description.
* @default
*/
this.hasUpdate = false;
/**
* @property {bool} hasRender - Description.
* @property {boolean} hasRender - Description.
* @default
*/
this.hasRender = false;
/**
* @property {bool} hasPostRender - Description.
* @property {boolean} hasPostRender - Description.
* @default
*/
this.hasPostRender = false;