Difference between revisions of "B2.World.new"
From GiderosMobile
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | ''' | + | '''Class:''' [[b2.World]]<br/> |
− | === | + | |
− | + | === Description === | |
− | Creates a new | + | Creates a new '''b2.World''' object. You can create more than one b2.World object to manage independent worlds. |
− | < | + | <syntaxhighlight lang="lua"> |
− | + | (any) = b2.World.new(gravityx,gravityy,doSleep) | |
− | + | </syntaxhighlight> | |
− | </ | + | |
− | === | + | === Parameters === |
− | '''gravityx''': (number) | + | '''gravityx''': (number) gravity on the x axis<br/> |
− | '''gravityy''': (number) | + | '''gravityy''': (number) gravity on the y axis<br/> |
− | '''doSleep''': (boolean | + | '''doSleep''': (boolean) improve performance by not simulating inactive bodies, '''default = true'''<br/> |
− | === | + | |
− | ''' | + | === Return values === |
− | + | '''Returns''' (any) a new b2.World object<br/> | |
+ | |||
+ | === Example === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep? | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | {{B2.World}} |
Latest revision as of 22:29, 30 April 2025
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) = b2.World.new(gravityx,gravityy,doSleep)
Parameters
gravityx: (number) gravity on the x axis
gravityy: (number) gravity on the y axis
doSleep: (boolean) improve performance by not simulating inactive bodies, default = true
Return values
Returns (any) a new b2.World object
Example
self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep?