buttonMode added and documented

This commit is contained in:
Mat Groves 2013-05-01 11:03:52 +01:00
parent c1240a1da7
commit 164e35e5f0
26 changed files with 634 additions and 140 deletions

View file

@ -206,6 +206,12 @@ PIXI.DisplayObject = function()
// [readonly] best not to toggle directly! use setInteractive()
this.interactive = false;
/**
* This is used to indicate if the displayObject should display a mouse hand cursor on rollover
* @property buttonMode
* @type Boolean
*/
this.buttonMode = false;
/*