mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Merge pull request #3741 from TadejZupancic/patch-5
Zone inside a Container fix
This commit is contained in:
commit
aa9ba84766
1 changed files with 12 additions and 0 deletions
|
@ -256,6 +256,18 @@ var Zone = new Class({
|
|||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* A NOOP method so you can pass a Zone to a Container.
|
||||
* Calling this method will do nothing. It is intentionally empty.
|
||||
*
|
||||
* @method Phaser.GameObjects.Zone#setAlpha
|
||||
* @private
|
||||
* @since 3.10.0
|
||||
*/
|
||||
setAlpha: function ()
|
||||
{
|
||||
},
|
||||
|
||||
/**
|
||||
* A Zone does not render.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue