Difference between revisions of "B2.World.new"
From GiderosMobile
| m (added example) | |||
| Line 1: | Line 1: | ||
| __NOTOC__ | __NOTOC__ | ||
| <languages /> | <languages /> | ||
| − | ''' | + | '''Available since:''' Gideros 2011.6<br/> | 
| − | ''' | + | '''Class:''' [[Special:MyLanguage/b2.World|b2.World]]<br/> | 
| − | ===  | + | === Description === | 
| Creates a new [[Special:MyLanguage/b2.World|b2.World]] object. You can create more than one [[Special:MyLanguage/b2.World|b2.World]] object to manage independent worlds. | Creates a new [[Special:MyLanguage/b2.World|b2.World]] object. You can create more than one [[Special:MyLanguage/b2.World|b2.World]] object to manage independent worlds. | ||
| <source lang="lua"> | <source lang="lua"> | ||
| Line 10: | Line 10: | ||
| </source> | </source> | ||
| − | ===  | + | === Parameters === | 
| − | '''gravityx''': (number)  | + | '''gravityx''': (number) the x component the gravity <br/> | 
| − | '''gravityy''': (number)  | + | '''gravityy''': (number) the y component the gravity <br/> | 
| − | '''doSleep''': (boolean, default = true)  | + | '''doSleep''': (boolean, default = true) improve performance by not simulating inactive bodies <br/> | 
| − | ===  | + | === Return values === | 
| − | ''' | + | '''Returns''' (any) A new [[Special:MyLanguage/b2.World|b2.World]] object.<br/> | 
| − | ''' | + | '''Returns''' (any) A new [[Special:MyLanguage/b2.World|b2.World]] object.<br/> | 
| + | |||
| + | === Example === | ||
| + | <source lang="lua"> | ||
| + | self.world = b2.World.new(0, 9.81, true) -- gravity x, gravity y, doSleep? | ||
| + | </source> | ||
| {{B2.World}} | {{B2.World}} | ||
Revision as of 04:59, 5 November 2020
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?
