Difference between revisions of "R3d.SphereShape"
From GiderosMobile
Line 16: | Line 16: | ||
=== <translate>Methods</translate> === | === <translate>Methods</translate> === | ||
[[Special:MyLanguage/r3d.SphereShape.new|r3d.SphereShape.new]] ''<translate>creates a new collision sphere shape</translate>''<br/> | [[Special:MyLanguage/r3d.SphereShape.new|r3d.SphereShape.new]] ''<translate>creates a new collision sphere shape</translate>''<br/> | ||
− | <!-- GIDEROSMTD:r3d.SphereShape.new( | + | <!-- GIDEROSMTD:r3d.SphereShape.new(radius) creates a new collision sphere shape --> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| |
Revision as of 02:53, 23 January 2020
Supported platforms:
Available since: Gideros 2019.10
Description
Once you have created a rigid body in the world, you need to add one or more collision shapes to it so that it is able to collide with other bodies.
The collision shapes are also the way to represent the mass of a Rigid Body. Whenever you add a collision shape to a rigid body, you need to specify the mass of the shape. Then the rigid body will recompute its total mass, its center of mass and its inertia tensor taking into account all its collision shapes.
Sphere Shape
The SphereShape class describes a sphere collision shape centered at the origin of the shape local space.
Methodsr3d.SphereShape.new creates a new collision sphere shape |