R3d.Body:setType

From GiderosMobile
Revision as of 15:30, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

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

<syntaxhighlight lang="lua"> r3d.Body:setType(type) </source>

Parameters

type: (number) the body type

Example

<syntaxhighlight lang="lua"> plane.body:setType(r3d.Body.STATIC_BODY) cube01.body:setType(r3d.Body.KINEMATIC_BODY ) cube02.body:setType(2) </source>