PhysicsShapeQueryParameters¶
Parameters to be sent to a 3D shape physics query.
Description¶
This class contains the shape and other parameters for 3D intersection/collision queries.
Properties¶
|
||
|
||
|
||
|
||
|
||
|
Methods¶
void |
Property Descriptions¶
bool collide_with_areas = false
If true
, the query will take Areas into account.
bool collide_with_bodies = true
If true
, the query will take PhysicsBodys into account.
int collision_mask = 2147483647
The physics layer(s) the query will take into account (as a bitmask). See Collision layers and masks in the documentation for more information.
Array exclude = [ ]
The list of objects or object RIDs that will be excluded from collisions.
float margin = 0.0
The collision margin for the shape.
RID shape_rid
The queried shape's RID. See also set_shape.
Transform transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )
The queried shape's transform matrix.
Method Descriptions¶
void set_shape ( Resource shape )
Sets the Shape that will be used for collision/intersection queries.