Physics2DShapeQueryParameters
Parameters to be sent to a 2D shape physics query.
参数将被发送到一个二维形状物理查询
Description
This class contains the shape and other parameters for 2D intersection/collision queries. See also Physics2DShapeQueryResult.
这个类包含形状和其他参数用于查询2D交集/碰撞。 另请参阅Physics2DShapeQueryResult。
Properties
bool | collide_with_areas | false |
bool | collide_with_bodies | true |
int | collision_layer | 2147483647 |
Array | exclude | [ ] |
float | margin | 0.0 |
Vector2 | motion | Vector2( 0, 0 ) |
RID | shape_rid | |
Transform2D | transform | Transform2D( 1, 0, 0, 1, 0, 0 ) |
Methods
void | set_shape ( Resource shape ) |
Property Descriptions
- bool collide_with_areas
Default | false |
Setter | set_collide_with_areas(value) |
Getter | is_collide_with_areas_enabled() |
If true
, the query will take Area2Ds into account.
如果为true,则查询将考虑Area2D
- bool collide_with_bodies
Default | true |
Setter | set_collide_with_bodies(value) |
Getter | is_collide_with_bodies_enabled() |
If true
, the query will take PhysicsBody2Ds into account.
如果为true,则查询将考虑PhysicsBody2D。
- int collision_layer
Default | 2147483647 |
Setter | set_collision_layer(value) |
Getter | get_collision_layer() |
The physics layer(s) the query will take into account (as a bitmask).
查询将考虑的物理层(作为位掩码)
- Array exclude
Default | [ ] |
Setter | set_exclude(value) |
Getter | get_exclude() |
The list of objects or object RIDs that will be excluded from collisions.
将从碰撞中排除的对象或对象RID的列表。
- float margin
Default | 0.0 |
Setter | set_margin(value) |
Getter | get_margin() |
The collision margin for the shape.
形状的碰撞边距。
- Vector2 motion
Default | Vector2( 0, 0 ) |
Setter | set_motion(value) |
Getter | get_motion() |
The motion of the shape being queried for.
被查询形状的移动。
- RID shape_rid
Setter | set_shape_rid(value) |
Getter | get_shape_rid() |
The queried shape's RID. See also set_shape.
查询形状的RID。 另请参阅set_shape。
- Transform2D transform
Default | Transform2D( 1, 0, 0, 1, 0, 0 ) |
Setter | set_transform(value) |
Getter | get_transform() |
The queried shape's transform matrix.
查询形状的变换矩阵。
Method Descriptions
- void set_shape ( Resource shape )
Sets the Shape2D that will be used for collision/intersection queries.
设置Shape2D,它将用于碰撞/交集的查询。