GLTFPhysicsBody

Inherits: Resource < Reference < Object

Represents a GLTF physics body.

Description

Represents a physics body as defined by the OMI_physics_body GLTF extension. This class is an intermediary between the GLTF data and Redot's nodes, and it's abstracted in a way that allows adding support for different GLTF physics extensions in the future.

Tutorials

Properties

Vector3

angular_velocity

Vector3( 0, 0, 0 )

String

body_type

"static"

Vector3

linear_velocity

Vector3( 0, 0, 0 )

float

mass

1.0

Methods

Dictionary

to_dictionary ( ) const

CollisionObject

to_node ( ) const


Property Descriptions

Vector3 angular_velocity = Vector3( 0, 0, 0 )

  • void set_angular_velocity ( Vector3 value )

  • Vector3 get_angular_velocity ( )

The angular velocity of the physics body, in radians per second. This is only used when the body type is "rigid" or "vehicle".


String body_type = "static"

  • void set_body_type ( String value )

  • String get_body_type ( )

The type of the body. Valid values are "static", "kinematic", "character", "rigid", "vehicle", and "trigger".


Vector3 linear_velocity = Vector3( 0, 0, 0 )

  • void set_linear_velocity ( Vector3 value )

  • Vector3 get_linear_velocity ( )

The linear velocity of the physics body, in meters per second. This is only used when the body type is "rigid" or "vehicle".


float mass = 1.0

  • void set_mass ( float value )

  • float get_mass ( )

The mass of the physics body, in kilograms. This is only used when the body type is "rigid" or "vehicle".


Method Descriptions

Dictionary to_dictionary ( ) const

Serializes this GLTFPhysicsBody instance into a Dictionary.


CollisionObject to_node ( ) const

Converts this GLTFPhysicsBody instance into a Redot CollisionObject node.