Difference between revisions of "B2.World.new"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 8: Line 8:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(any), (any) = b2.World.new(gravityx,gravityy,doSleep)
 
(any), (any) = b2.World.new(gravityx,gravityy,doSleep)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 22: Line 22:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep?
 
self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep?
</source>
+
</syntaxhighlight>
  
 
{{B2.World}}
 
{{B2.World}}

Latest revision as of 15:26, 13 July 2023


Available since: Gideros 2011.6
Class: b2.World

Description

Creates a new b2.World object. You can create more than one b2.World object to manage independent worlds.

(any), (any) = b2.World.new(gravityx,gravityy,doSleep)

Parameters

gravityx: (number) the x component the gravity
gravityy: (number) the y component the gravity
doSleep: (boolean, default = true) improve performance by not simulating inactive bodies

Return values

Returns (any) A new b2.World object.
Returns (any) A new b2.World object.

Example

self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep?





LiquidFun