Difference between revisions of "B2.World:setDebugDraw"

From GiderosMobile
Line 8: Line 8:
 
  b2.World:setDebugDraw()
 
  b2.World:setDebugDraw()
 
</source>
 
</source>
 +
=== Examples ===
 +
'''Example'''<br/>
 +
<source lang="lua">local debugDraw = b2.DebugDraw.new()<br />
 +
world:setDebugDraw(debugDraw)<br />
 +
stage:addChild(debugDraw)</source>

Revision as of 11:44, 23 August 2018

Available since: Gideros 2011.6

Description


Registers a b2.DebugDraw instance for debug drawing.

 b2.World:setDebugDraw()

Examples

Example

local debugDraw = b2.DebugDraw.new()<br />
world:setDebugDraw(debugDraw)<br />
stage:addChild(debugDraw)