Difference between revisions of "B2.World:setGravity"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 6: Line 6:
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
Sets the gravity vector.
 
Sets the gravity vector.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
b2.World:setGravity(gravityx,gravityy)
 
b2.World:setGravity(gravityx,gravityy)
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023


Available since: Gideros 2011.6
Class: b2.World

Description

Sets the gravity vector. <syntaxhighlight lang="lua"> b2.World:setGravity(gravityx,gravityy) </source>

Parameters

gravityx: (number) the x component the gravity
gravityy: (number) the y component the gravity





LiquidFun