R3d.Body:setType

From GiderosMobile
Revision as of 18:01, 22 January 2020 by MoKaLux (talk | contribs) (Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.Body<br/> === Description === Sets the body type. Can be one of the following: *r3d.Body.STATIC_BODY '''0'''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2019.10
Class: R3d.Body

Description

Sets the body type. Can be one of the following:

  • r3d.Body.STATIC_BODY 0
  • r3d.Body.KINEMATIC_BODY 1
  • r3d.Body.DYNAMIC_BODY 2
r3d.Body:setType(type)

Parameters

type: (number) the body type

Example

plane.body:setType(r3d.Body.STATIC_BODY)
cube01.body:setType(r3d.Body.KINEMATIC_BODY )
cube02.body:setType(2)