Area¶
Inherits: CollisionObject < Spatial < Node < Object
3D area for detection and physics and audio influence.
Description¶
3D area that detects CollisionObject nodes overlapping, entering, or exiting. Can also alter or override local physics parameters (gravity, damping) and route audio to a custom audio bus.
To give the area its shape, add a CollisionShape or a CollisionPolygon node as a direct child (or add multiple such nodes as direct children) of the area.
Warning: See ConcavePolygonShape (also called "trimesh") for a warning about possibly unexpected behavior when using that shape for an area.
Warning: With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead.
Tutorials¶
Properties¶
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Methods¶
get_overlapping_areas ( ) const |
|
get_overlapping_bodies ( ) const |
|
overlaps_area ( Node area ) const |
|
overlaps_body ( Node body ) const |
Signals¶
area_entered ( Area area )
Emitted when another Area enters this Area. Requires monitoring to be set to true
.
area
the other Area.
area_exited ( Area area )
Emitted when another Area exits this Area. Requires monitoring to be set to true
.
area
the other Area.
area_shape_entered ( RID area_rid, Area area, int area_shape_index, int local_shape_index )
Emitted when one of another Area's Shapes enters one of this Area's Shapes. Requires monitoring to be set to true
.
area_rid
the RID of the other Area's CollisionObject used by the PhysicsServer.
area
the other Area.
area_shape_index
the index of the Shape from the other Area.
local_shape_index
the index of the Shape from this Area.
Example of getting the CollisionShape node from the shape index:
var other_shape_owner = area.shape_find_owner(area_shape_index)
var other_shape_node = area.shape_owner_get_owner(other_shape_owner)
var local_shape_owner = shape_find_owner(local_shape_index)
var local_shape_node = shape_owner_get_owner(local_shape_owner)
area_shape_exited ( RID area_rid, Area area, int area_shape_index, int local_shape_index )
Emitted when one of another Area's Shapes enters one of this Area's Shapes. Requires monitoring to be set to true
.
area_rid
the RID of the other Area's CollisionObject used by the PhysicsServer.
area
the other Area.
area_shape_index
the index of the Shape from the other Area.
local_shape_index
the index of the Shape from this Area.
See also area_shape_entered.
body_entered ( Node body )
Emitted when a PhysicsBody or GridMap enters this Area. Requires monitoring to be set to true
. GridMaps are detected if the MeshLibrary has Collision Shapes.
body
the Node, if it exists in the tree, of the other PhysicsBody or GridMap.
body_exited ( Node body )
Emitted when a PhysicsBody or GridMap exits this Area. Requires monitoring to be set to true
. GridMaps are detected if the MeshLibrary has Collision Shapes.
body
the Node, if it exists in the tree, of the other PhysicsBody or GridMap.
body_shape_entered ( RID body_rid, Node body, int body_shape_index, int local_shape_index )
Emitted when one of a PhysicsBody or GridMap's Shapes enters one of this Area's Shapes. Requires monitoring to be set to true
. GridMaps are detected if the MeshLibrary has Collision Shapes.
body_rid
the RID of the PhysicsBody or MeshLibrary's CollisionObject used by the PhysicsServer.
body
the Node, if it exists in the tree, of the PhysicsBody or GridMap.
body_shape_index
the index of the Shape from the PhysicsBody or GridMap.
local_shape_index
the index of the Shape from this Area.
Example of getting the CollisionShape node from the shape index:
var body_shape_owner = body.shape_find_owner(body_shape_index)
var body_shape_node = body.shape_owner_get_owner(body_shape_owner)
var local_shape_owner = shape_find_owner(local_shape_index)
var local_shape_node = shape_owner_get_owner(local_shape_owner)
body_shape_exited ( RID body_rid, Node body, int body_shape_index, int local_shape_index )
Emitted when one of a PhysicsBody or GridMap's Shapes enters one of this Area's Shapes. Requires monitoring to be set to true
. GridMaps are detected if the MeshLibrary has Collision Shapes.
body_rid
the RID of the PhysicsBody or MeshLibrary's CollisionObject used by the PhysicsServer.
body
the Node, if it exists in the tree, of the PhysicsBody or GridMap.
body_shape_index
the index of the Shape from the PhysicsBody or GridMap.
local_shape_index
the index of the Shape from this Area.
See also body_shape_entered.
Enumerations¶
enum SpaceOverride:
SpaceOverride SPACE_OVERRIDE_DISABLED = 0
This area does not affect gravity/damping.
SpaceOverride SPACE_OVERRIDE_COMBINE = 1
This area adds its gravity/damping values to whatever has been calculated so far (in priority order).
SpaceOverride SPACE_OVERRIDE_COMBINE_REPLACE = 2
This area adds its gravity/damping values to whatever has been calculated so far (in priority order), ignoring any lower priority areas.
SpaceOverride SPACE_OVERRIDE_REPLACE = 3
This area replaces any gravity/damping, even the defaults, ignoring any lower priority areas.
SpaceOverride SPACE_OVERRIDE_REPLACE_COMBINE = 4
This area replaces any gravity/damping calculated so far (in priority order), but keeps calculating the rest of the areas.
Property Descriptions¶
float angular_damp = 0.1
The rate at which objects stop spinning in this area. Represents the angular velocity lost per second.
See ProjectSettings.physics/3d/default_angular_damp for more details about damping.
String audio_bus_name = "Master"
The name of the area's audio bus.
bool audio_bus_override = false
If true
, the area's audio bus overrides the default audio bus.
float gravity = 9.8
The area's gravity intensity (in meters per second squared). This value multiplies the gravity vector. This is useful to alter the force of gravity without altering its direction.
float gravity_distance_scale = 0.0
The falloff factor for point gravity. The greater the value, the faster gravity decreases with distance.
bool gravity_point = false
If true
, gravity is calculated from a point (set via gravity_vec). See also space_override.
Vector3 gravity_vec = Vector3( 0, -1, 0 )
The area's gravity vector (not normalized). If gravity is a point (see gravity_point), this will be the point of attraction.
float linear_damp = 0.1
The rate at which objects stop moving in this area. Represents the linear velocity lost per second.
See ProjectSettings.physics/3d/default_linear_damp for more details about damping.
bool monitorable = true
If true
, other monitoring areas can detect this area.
bool monitoring = true
If true
, the area detects bodies or areas entering and exiting it.
float priority = 0.0
The area's priority. Higher priority areas are processed first.
float reverb_bus_amount = 0.0
The degree to which this area applies reverb to its associated audio. Ranges from 0
to 1
with 0.1
precision.
bool reverb_bus_enable = false
If true
, the area applies reverb to its associated audio.
String reverb_bus_name = "Master"
The reverb bus name to use for this area's associated audio.
float reverb_bus_uniformity = 0.0
The degree to which this area's reverb is a uniform effect. Ranges from 0
to 1
with 0.1
precision.
SpaceOverride space_override = 0
void set_space_override_mode ( SpaceOverride value )
SpaceOverride get_space_override_mode ( )
Override mode for gravity and damping calculations within this area. See SpaceOverride for possible values.
Method Descriptions¶
Array get_overlapping_areas ( ) const
Returns a list of intersecting Areas. The overlapping area's CollisionObject.collision_layer must be part of this area's CollisionObject.collision_mask in order to be detected.
For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.
Array get_overlapping_bodies ( ) const
Returns a list of intersecting PhysicsBodys. The overlapping body's CollisionObject.collision_layer must be part of this area's CollisionObject.collision_mask in order to be detected.
For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.
bool overlaps_area ( Node area ) const
If true
, the given area overlaps the Area.
Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.
bool overlaps_body ( Node body ) const
If true
, the given physics body overlaps the Area.
Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.
The body
argument can either be a PhysicsBody or a GridMap instance (while GridMaps are not physics body themselves, they register their tiles with collision shapes as a virtual physics body).