Difference between revisions of "B2.World"
Line 2: | Line 2: | ||
'''Supported platforms:''' android, ios, mac, pc<br/> | '''Supported platforms:''' android, ios, mac, pc<br/> | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
− | === Description === | + | === <translate>Description</translate> === |
<translate>The [[Special:MyLanguage/b2.World|b2.World]] class inherits from the following class: [[Special:MyLanguage/EventDispatcher|EventDispatcher]].<br /> | <translate>The [[Special:MyLanguage/b2.World|b2.World]] class inherits from the following class: [[Special:MyLanguage/EventDispatcher|EventDispatcher]].<br /> | ||
<br /> | <br /> | ||
The [[Special:MyLanguage/b2.World|b2.World]] class manages all physics entities and dynamic simulation. It is possible to create and manage more than one [[Special:MyLanguage/b2.World|b2.World]] instance.<br /> | The [[Special:MyLanguage/b2.World|b2.World]] class manages all physics entities and dynamic simulation. It is possible to create and manage more than one [[Special:MyLanguage/b2.World|b2.World]] instance.<br /> | ||
<br /></translate> | <br /></translate> | ||
− | === Examples === | + | === <translate>Examples</translate> === |
'''Creating Box2d body and moving Bitmap along the body'''<br/> | '''Creating Box2d body and moving Bitmap along the body'''<br/> | ||
<source lang="lua">require "box2d" | <source lang="lua">require "box2d" | ||
Line 87: | Line 87: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Methods === | + | === <translate>Methods</translate> === |
[[Special:MyLanguage/b2.World.new|b2.World.new]] <br/> | [[Special:MyLanguage/b2.World.new|b2.World.new]] <br/> | ||
[[Special:MyLanguage/b2.World:clearForces|b2.World:clearForces]] ''<translate>call this after you are done with time steps to clear the forces</translate>''<br/> | [[Special:MyLanguage/b2.World:clearForces|b2.World:clearForces]] ''<translate>call this after you are done with time steps to clear the forces</translate>''<br/> | ||
Line 102: | Line 102: | ||
[[Special:MyLanguage/b2.World:step|b2.World:step]] ''<translate>takes a time step</translate>''<br/> | [[Special:MyLanguage/b2.World:step|b2.World:step]] ''<translate>takes a time step</translate>''<br/> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Events === | + | === <translate>Events</translate> === |
[[Special:MyLanguage/Event.BEGIN_CONTACT|Event.BEGIN_CONTACT]]<br/> | [[Special:MyLanguage/Event.BEGIN_CONTACT|Event.BEGIN_CONTACT]]<br/> | ||
[[Special:MyLanguage/Event.BEGIN_CONTACT_PARTICLE|Event.BEGIN_CONTACT_PARTICLE]]<br/> | [[Special:MyLanguage/Event.BEGIN_CONTACT_PARTICLE|Event.BEGIN_CONTACT_PARTICLE]]<br/> | ||
Line 108: | Line 108: | ||
[[Special:MyLanguage/Event.POST_SOLVE|Event.POST_SOLVE]]<br/> | [[Special:MyLanguage/Event.POST_SOLVE|Event.POST_SOLVE]]<br/> | ||
[[Special:MyLanguage/Event.PRE_SOLVE|Event.PRE_SOLVE]]<br/> | [[Special:MyLanguage/Event.PRE_SOLVE|Event.PRE_SOLVE]]<br/> | ||
− | === Constants === | + | === <translate>Constants</translate> === |
|} | |} |
Revision as of 07:28, 24 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
The b2.World class inherits from the following class: EventDispatcher.
The b2.World class manages all physics entities and dynamic simulation. It is possible to create and manage more than one b2.World instance.
Examples
Creating Box2d body and moving Bitmap along the body
require "box2d"
local world = b2.World.new(0, 10, true)
--create ball bitmap object from ball graphic
local ball = Bitmap.new(Texture.new("ball.png"))
--reference center of the ball for positioning
ball:setAnchorPoint(0.5,0.5)
ball:setPosition(100,100)
--get radius
local radius = ball:getWidth()/2
--create box2d physical object
local body = world:createBody{type = b2.DYNAMIC_BODY}
local circle = b2.CircleShape.new(0, 0, radius)
local fixture = body:createFixture{shape = circle, density = 1.0,
friction = 0.1, restitution = 0.2}
ball.body = body
--add to scene
stage:addChild(ball)
stage:addEventListener(Event.ENTER_FRAME, function()
-- edit the step values if required. These are good defaults!
world:step(1/60, 8, 3)
ball:setPosition(ball.body:getPosition())
ball:setRotation(math.rad(ball.body:getAngle()))
end)
Detecting collisions between bodies
--add collision event listener
world:addEventListener(Event.BEGIN_CONTACT, function(e)
--getting contact bodies
local fixtureA = e.fixtureA
local fixtureB = e.fixtureB
local bodyA = fixtureA:getBody()
local bodyB = fixtureB:getBody()
--do what you need with colliding bodies
end)
--add collision event listener
world:addEventListener(Event.END_CONTACT, function(e)
--getting contact bodies
local fixtureA = e.fixtureA
local fixtureB = e.fixtureB
local bodyA = fixtureA:getBody()
local bodyB = fixtureB:getBody()
--do what you need with colliding bodies
end)
--add collision event listener
world:addEventListener(Event.PRE_SOLVE, function(e)
--getting contact bodies
local fixtureA = e.fixtureA
local fixtureB = e.fixtureB
local bodyA = fixtureA:getBody()
local bodyB = fixtureB:getBody()
--do what you need with colliding bodies
end)
--add collision event listener
world:addEventListener(Event.POST_SOLVE, function(e)
--getting contact bodies
local fixtureA = e.fixtureA
local fixtureB = e.fixtureB
local bodyA = fixtureA:getBody()
local bodyB = fixtureB:getBody()
--do what you need with colliding bodies
--additionally get collision force
print(event.maxImpulse)
end)
Methodsb2.World.new |
EventsEvent.BEGIN_CONTACT Constants |