mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Fix bug
This commit is contained in:
parent
a2702fd795
commit
266c1f411d
1 changed files with 4 additions and 4 deletions
|
@ -97,7 +97,7 @@ var Depth = {
|
||||||
*/
|
*/
|
||||||
bringMeToTop: function()
|
bringMeToTop: function()
|
||||||
{
|
{
|
||||||
var list = (this.parentContainer) ? gameObject.parentContainer : this.displayList.list;
|
var list = (this.parentContainer) ? this.parentContainer.list : this.displayList.list;
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
{
|
{
|
||||||
|
@ -118,7 +118,7 @@ var Depth = {
|
||||||
*/
|
*/
|
||||||
sendMeToBack: function()
|
sendMeToBack: function()
|
||||||
{
|
{
|
||||||
var list = (this.parentContainer) ? gameObject.parentContainer : this.displayList.list;
|
var list = (this.parentContainer) ? this.parentContainer.list : this.displayList.list;
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
{
|
{
|
||||||
|
@ -142,7 +142,7 @@ var Depth = {
|
||||||
*/
|
*/
|
||||||
moveMyDepthBelow: function(gameObject)
|
moveMyDepthBelow: function(gameObject)
|
||||||
{
|
{
|
||||||
var list = (this.parentContainer) ? gameObject.parentContainer : this.displayList.list;
|
var list = (this.parentContainer) ? this.parentContainer.list : this.displayList.list;
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
{
|
{
|
||||||
|
@ -166,7 +166,7 @@ var Depth = {
|
||||||
*/
|
*/
|
||||||
moveMyDepthAbove: function(gameObject)
|
moveMyDepthAbove: function(gameObject)
|
||||||
{
|
{
|
||||||
var list = (this.parentContainer) ? gameObject.parentContainer : this.displayList.list;
|
var list = (this.parentContainer) ? this.parentContainer.list : this.displayList.list;
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue