Difference between revisions of "R3d.World"
(starting a new challenge :-)) |
|||
Line 17: | Line 17: | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== <translate>Methods</translate> === | === <translate>Methods</translate> === | ||
− | [[Special:MyLanguage/r3d.World.new|r3d.World.new]] ''<translate> | + | [[Special:MyLanguage/r3d.World.new|r3d.World.new]] ''<translate>creates a new world</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World.new(gravityX,gravityY,gravityZ) | + | <!-- GIDEROSMTD:r3d.World.new(gravityX,gravityY,gravityZ) creates a 3D physics world --> |
− | [[Special:MyLanguage/r3d.World:createBody|r3d.World:createBody]] ''<translate> | + | [[Special:MyLanguage/r3d.World:createBody|r3d.World:createBody]] ''<translate>creates a new body</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:createBody(transform) | + | <!-- GIDEROSMTD:r3d.World:createBody(transform) creates a new body --> |
− | [[Special:MyLanguage/r3d.World:destroyBody|r3d.World:destroyBody]] ''<translate> | + | [[Special:MyLanguage/r3d.World:destroyBody|r3d.World:destroyBody]] ''<translate>destroys a body</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:destroyBody(body) | + | <!-- GIDEROSMTD:r3d.World:destroyBody(body) destroys a body --> |
− | [[Special:MyLanguage/r3d.World:step|r3d.World:step]] ''<translate> | + | [[Special:MyLanguage/r3d.World:step|r3d.World:step]] ''<translate>steps the world</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:step(time) | + | <!-- GIDEROSMTD:r3d.World:step(time) steps the world --> |
− | [[Special:MyLanguage/r3d.World:raycast|r3d.World:raycast]] ''<translate> | + | [[Special:MyLanguage/r3d.World:raycast|r3d.World:raycast]] ''<translate>performs a ray cast on the world</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:raycast(sx,sy,sz,ex,ey,ez,callback,category) | + | <!-- GIDEROSMTD:r3d.World:raycast(sx,sy,sz,ex,ey,ez,callback,category) performs a ray cast on the world --> |
− | [[Special:MyLanguage/r3d.World:testOverlap|r3d.World:testOverlap]] ''<translate> | + | [[Special:MyLanguage/r3d.World:testOverlap|r3d.World:testOverlap]] ''<translate>checks if two bodies overlap</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:testOverlap(bodyA,bodyB) | + | <!-- GIDEROSMTD:r3d.World:testOverlap(bodyA,bodyB) checks if two bodies overlap --> |
− | [[Special:MyLanguage/r3d.World:testAABBOverlap|r3d.World:testAABBOverlap]] ''<translate> | + | [[Special:MyLanguage/r3d.World:testAABBOverlap|r3d.World:testAABBOverlap]] ''<translate>checks if two bodies AABB overlap</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:testAABBOverlap(bodyA,bodyB) | + | <!-- GIDEROSMTD:r3d.World:testAABBOverlap(bodyA,bodyB) checks if two bodies AABB overlap --> |
− | [[Special:MyLanguage/r3d.World:testCollision|r3d.World:testCollision]] ''<translate> | + | [[Special:MyLanguage/r3d.World:testCollision|r3d.World:testCollision]] ''<translate>checks collisions</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:testCollision([bodyA,[bodyB,]]callback[,category]) | + | <!-- GIDEROSMTD:r3d.World:testCollision([bodyA,[bodyB,]]callback[,category]) checks collisions --> |
− | [[Special:MyLanguage/r3d.World:setEventListener|r3d.World:setEventListener]] ''<translate> | + | [[Special:MyLanguage/r3d.World:setEventListener|r3d.World:setEventListener]] ''<translate>sets the event listener for collisions in the world</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:setEventListener(listener) | + | <!-- GIDEROSMTD:r3d.World:setEventListener(listener) sets the event listener for collisions in the world --> |
[[Special:MyLanguage/r3d.World:createBallAndSocketJoint|r3d.World:createBallAndSocketJoint]] <br/> | [[Special:MyLanguage/r3d.World:createBallAndSocketJoint|r3d.World:createBallAndSocketJoint]] <br/> | ||
<!-- GIDEROSMTD:r3d.World:createBallAndSocketJoint(bodyA,bodyB,anchorX,anchorY,anchorZ,params) --> | <!-- GIDEROSMTD:r3d.World:createBallAndSocketJoint(bodyA,bodyB,anchorX,anchorY,anchorZ,params) --> | ||
Line 43: | Line 43: | ||
[[Special:MyLanguage/r3d.World:createFixedJoint|r3d.World:createFixedJoint]] <br/> | [[Special:MyLanguage/r3d.World:createFixedJoint|r3d.World:createFixedJoint]] <br/> | ||
<!-- GIDEROSMTD:r3d.World:createFixedJoint(bodyA,bodyB,anchorX,anchorY,anchorZ,params) --> | <!-- GIDEROSMTD:r3d.World:createFixedJoint(bodyA,bodyB,anchorX,anchorY,anchorZ,params) --> | ||
− | [[Special:MyLanguage/r3d.World:destroyJoint|r3d.World:destroyJoint]] ''<translate> | + | [[Special:MyLanguage/r3d.World:destroyJoint|r3d.World:destroyJoint]] ''<translate>destroys a joint</translate>''<br/> |
− | <!-- GIDEROSMTD:r3d.World:destroyBody(joint) | + | <!-- GIDEROSMTD:r3d.World:destroyBody(joint) destroys a joint --> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
|} | |} |
Revision as of 00:51, 22 January 2020
Supported platforms:
Available since: Gideros 2019.10
Description
A dynamics world is used to automatically simulate the motion of your bodies using the world physics.
Bodies will be automatically moved using collisions, joints and forces. You do not have to move the bodies manually (but you still can if needed).
The dynamics world will contain the bodies and joints that you create. You will then be able to run your simulation across time by updating the world at each frame.
The DynamicsWorld class (which inherits from the CollisionWorld class) represents a dynamics world in the ReactPhysics3D library.
Methodsr3d.World.new creates a new world |