R3d.CapsuleShape.new
From GiderosMobile
Revision as of 00:29, 23 January 2020 by MoKaLux (talk | contribs) (Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.CapsuleShape<br/> === Description === Creates a new collision capsule shape (fixture). <source lang="lua"> r3...")
Available since: Gideros 2019.10
Class: R3d.CapsuleShape
Description
Creates a new collision capsule shape (fixture).
r3d.CapsuleShape.new(size,height)
Parameters
size: (number) the size of the capsule on the X axis
height: (number) the height of the capsule on the Y axis
Example
-- a ship
local shipobj = loadObj("3d/ship", "ship.obj")
shipobj.shape1 = r3d.CapsuleShape.new(4, 2)
shipobj.mass = 128
local shipvp = Viewport.new()
shipvp:setContent(shipobj)
shipvp.body = world:createBody(shipvp:getMatrix())
shipvp.body:createFixture(shipobj.shape1, nil, shipobj.mass)