Set Draw Mode

I’m in the simulator on an IMAC.  I was making some changes to the assets and I turned on:

physics.setDrawMode(“hybrid”)

But, when I turned it off, it still shows up.

–physics.setDrawMode(“hybrid”)

Normally when I turn that line off it goes away and all is fine.  But now, it is showing up on all levels whether or not it has the physic.setDrawMode on or off.  It doesn’t show up on non game level screens.

I’ve tried shutting down everything and coming back in but that didn’t work.

Did I inadvertently cause this?   What can I do to make it work correctly?

Thanks

Lori

Make sure you don’t have it some where else.  Setting the draw mode  is usually pretty flawless.  You could also explicitly set it:

physics.setDrawMode( “normal” )

Rob

Thanks.

Make sure you don’t have it some where else.  Setting the draw mode  is usually pretty flawless.  You could also explicitly set it:

physics.setDrawMode( “normal” )

Rob

Thanks.