R3d.Body:setType

From GiderosMobile
Revision as of 11:04, 16 December 2025 by MoKaLux (talk | contribs)

Available since: Gideros 2019.10
Class: R3d.Body

Description

Sets the body type.

r3d.Body:setType(type)

Must be one of the following:

  • r3d.Body.STATIC_BODY 0
  • r3d.Body.KINEMATIC_BODY 1
  • r3d.Body.DYNAMIC_BODY 2

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)