File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1749,7 +1749,7 @@ var Body = new Class({
17491749 var x = pos . x + this . halfWidth ;
17501750 var y = pos . y + this . halfHeight ;
17511751
1752- var worldBlockedColor = 0xffff00 ;
1752+ var worldBlockedColor = this . world . defaults . worldBlockedDebugColor ;
17531753 var blockedColor = this . world . defaults . blockedDebugColor ;
17541754 var sleepColor = this . world . defaults . sleepDebugColor ;
17551755
Original file line number Diff line number Diff line change @@ -300,8 +300,9 @@ var World = new Class({
300300 bodyDebugColor : GetValue ( config , 'debugBodyColor' , 0xff00ff ) ,
301301 staticBodyDebugColor : GetValue ( config , 'debugStaticBodyColor' , 0x0000ff ) ,
302302 velocityDebugColor : GetValue ( config , 'debugVelocityColor' , 0x00ff00 ) ,
303- sleepDebugColor : GetValue ( config , 'debugSleepColor' , 0xffffff ) ,
304- blockedDebugColor : GetValue ( config , 'debugBlockedColor' , 0xff0000 )
303+ sleepDebugColor : GetValue ( config , 'debugSleepColor' , 0x8d8d8d ) ,
304+ blockedDebugColor : GetValue ( config , 'debugBlockedColor' , 0xff0000 ) ,
305+ worldBlockedDebugColor : GetValue ( config , 'debugWorldBlockedColor' , 0xffff00 )
305306 } ;
306307
307308 /**
You can’t perform that action at this time.
0 commit comments