PhysicsShapeQueryParameters

Inherits: Reference < Object

Parámetros que se enviarán a una consulta de física de formas 3D.

Descripción

This class contains the shape and other parameters for 3D intersection/collision queries.

Propiedades

bool

collide_with_areas

false

bool

collide_with_bodies

true

int

collision_mask

2147483647

Array

exclude

[  ]

float

margin

0.0

RID

shape_rid

Transform

transform

Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )

Métodos

void

set_shape ( Resource shape )

Descripciones de Propiedades

  • bool collide_with_areas

Default

false

Setter

set_collide_with_areas(value)

Getter

is_collide_with_areas_enabled()

If true, the query will take Areas into account.


  • bool collide_with_bodies

Default

true

Setter

set_collide_with_bodies(value)

Getter

is_collide_with_bodies_enabled()

If true, the query will take PhysicsBodys into account.


  • int collision_mask

Default

2147483647

Setter

set_collision_mask(value)

Getter

get_collision_mask()

The physics layer(s) the query will take into account (as a bitmask). See Collision layers and masks in the documentation for more information.


Default

[  ]

Setter

set_exclude(value)

Getter

get_exclude()

La lista de objetos RID que serán excluidos de las colisiones.


Default

0.0

Setter

set_margin(value)

Getter

get_margin()

El margen de colisión de la forma.


  • RID shape_rid

Setter

set_shape_rid(value)

Getter

get_shape_rid()

The queried shape's RID. See also set_shape.


Default

Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )

Setter

set_transform(value)

Getter

get_transform()

La matriz de transformación de la forma en cuestión.

Descripciones de Métodos

Sets the Shape that will be used for collision/intersection queries.