Difference between revisions of "B2.DebugDraw:setFlags"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
Line 18: Line 18:
 
<source lang="lua">
 
<source lang="lua">
 
b2.DebugDraw:setFlags(flags)
 
b2.DebugDraw:setFlags(flags)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 27: Line 27:
 
local debugDraw = b2.DebugDraw.new()
 
local debugDraw = b2.DebugDraw.new()
 
debugDraw:setFlags(b2.DebugDraw.SHAPE_BIT | b2.DebugDraw.JOINT_BIT)
 
debugDraw:setFlags(b2.DebugDraw.SHAPE_BIT | b2.DebugDraw.JOINT_BIT)
</source>
+
</syntaxhighlight>
  
 
{{B2.DebugDraw}}
 
{{B2.DebugDraw}}

Revision as of 17:53, 12 July 2023


Available since: Gideros 2011.6
Class: b2.DebugDraw

Description

Sets the debug drawing flags. These flags are available:

b2.DebugDraw.SHAPE_BIT is set by default.

Because Lua doesn't support bitwise operations by default, you can use "|" operator to combine flags. <source lang="lua"> b2.DebugDraw:setFlags(flags) </syntaxhighlight>

Parameters

flags: (number) debug draw flags

Examples

<source lang="lua"> local debugDraw = b2.DebugDraw.new() debugDraw:setFlags(b2.DebugDraw.SHAPE_BIT | b2.DebugDraw.JOINT_BIT) </syntaxhighlight>





LiquidFun