2D area for detection and 2D physics influence. 2D area that detects [CollisionObject2D] nodes overlapping, entering, or exiting. Can also alter or override local physics parameters (gravity, damping). https://docs.godotengine.org/en/3.3/tutorials/physics/using_area_2d.html https://godotengine.org/asset-library/asset/515 https://godotengine.org/asset-library/asset/121 https://godotengine.org/asset-library/asset/120 Returns an individual bit on the layer mask. Describes whether other areas will collide with this one on the given layer. Returns an individual bit on the collision mask. Describes whether this area will collide with others on the given layer. Returns a list of intersecting [Area2D]s. 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. Returns a list of intersecting [PhysicsBody2D]s. 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. If [code]true[/code], the given area overlaps the Area2D. [b]Note:[/b] 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. If [code]true[/code], the given physics body overlaps the Area2D. [b]Note:[/b] 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 [code]body[/code] argument can either be a [PhysicsBody2D] or a [TileMap] instance (while TileMaps are not physics body themselves, they register their tiles with collision shapes as a virtual physics body). Set/clear individual bits on the layer mask. This makes getting an area in/out of only one layer easier. Set/clear individual bits on the collision mask. This makes selecting the areas scanned easier. The rate at which objects stop spinning in this area. Represents the angular velocity lost per second. See [member ProjectSettings.physics/2d/default_angular_damp] for more details about damping. The name of the area's audio bus. If [code]true[/code], the area's audio bus overrides the default audio bus. The area's physics layer(s). Collidable objects can exist in any of 32 different layers. A contact is detected if object A is in any of the layers that object B scans, or object B is in any layers that object A scans. See also [member collision_mask]. See [url=https://docs.godotengine.org/en/3.3/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. The physics layers this area scans to determine collision detection. See [url=https://docs.godotengine.org/en/3.3/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. The area's gravity intensity (ranges from -1024 to 1024). This value multiplies the gravity vector. This is useful to alter the force of gravity without altering its direction. The falloff factor for point gravity. The greater the value, the faster gravity decreases with distance. If [code]true[/code], gravity is calculated from a point (set via [member gravity_vec]). See also [member space_override]. The area's gravity vector (not normalized). If gravity is a point (see [member gravity_point]), this will be the point of attraction. The rate at which objects stop moving in this area. Represents the linear velocity lost per second. See [member ProjectSettings.physics/2d/default_linear_damp] for more details about damping. If [code]true[/code], other monitoring areas can detect this area. If [code]true[/code], the area detects bodies or areas entering and exiting it. The area's priority. Higher priority areas are processed first. Override mode for gravity and damping calculations within this area. See [enum SpaceOverride] for possible values. Emitted when another Area2D enters this Area2D. Requires [member monitoring] to be set to [code]true[/code]. [code]area[/code] the other Area2D. Emitted when another Area2D exits this Area2D. Requires [member monitoring] to be set to [code]true[/code]. [code]area[/code] the other Area2D. Emitted when one of another Area2D's [Shape2D]s enters one of this Area2D's [Shape2D]s. Requires [member monitoring] to be set to [code]true[/code]. [code]area_id[/code] the [RID] of the other Area2D's [CollisionObject2D] used by the [Physics2DServer]. [code]area[/code] the other Area2D. [code]area_shape[/code] the index of the [Shape2D] of the other Area2D used by the [Physics2DServer]. [code]local_shape[/code] the index of the [Shape2D] of this Area2D used by the [Physics2DServer]. Emitted when one of another Area2D's [Shape2D]s exits one of this Area2D's [Shape2D]s. Requires [member monitoring] to be set to [code]true[/code]. [code]area_id[/code] the [RID] of the other Area2D's [CollisionObject2D] used by the [Physics2DServer]. [code]area[/code] the other Area2D. [code]area_shape[/code] the index of the [Shape2D] of the other Area2D used by the [Physics2DServer]. [code]local_shape[/code] the index of the [Shape2D] of this Area2D used by the [Physics2DServer]. Emitted when a [PhysicsBody2D] or [TileMap] enters this Area2D. Requires [member monitoring] to be set to [code]true[/code]. [TileMap]s are detected if the [TileSet] has Collision [Shape2D]s. [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody2D] or [TileMap]. Emitted when a [PhysicsBody2D] or [TileMap] exits this Area2D. Requires [member monitoring] to be set to [code]true[/code]. [TileMap]s are detected if the [TileSet] has Collision [Shape2D]s. [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody2D] or [TileMap]. Emitted when one of a [PhysicsBody2D] or [TileMap]'s [Shape2D]s enters one of this Area2D's [Shape2D]s. Requires [member monitoring] to be set to [code]true[/code]. [TileMap]s are detected if the [TileSet] has Collision [Shape2D]s. [code]body_id[/code] the [RID] of the [PhysicsBody2D] or [TileSet]'s [CollisionObject2D] used by the [Physics2DServer]. [code]body[/code] the [Node], if it exists in the tree, of the [PhysicsBody2D] or [TileMap]. [code]body_shape[/code] the index of the [Shape2D] of the [PhysicsBody2D] or [TileMap] used by the [Physics2DServer]. [code]local_shape[/code] the index of the [Shape2D] of this Area2D used by the [Physics2DServer]. Emitted when one of a [PhysicsBody2D] or [TileMap]'s [Shape2D]s exits one of this Area2D's [Shape2D]s. Requires [member monitoring] to be set to [code]true[/code]. [TileMap]s are detected if the [TileSet] has Collision [Shape2D]s. [code]body_id[/code] the [RID] of the [PhysicsBody2D] or [TileSet]'s [CollisionObject2D] used by the [Physics2DServer]. [code]body[/code] the [Node], if it exists in the tree, of the [PhysicsBody2D] or [TileMap]. [code]body_shape[/code] the index of the [Shape2D] of the [PhysicsBody2D] or [TileMap] used by the [Physics2DServer]. [code]local_shape[/code] the index of the [Shape2D] of this Area2D used by the [Physics2DServer]. This area does not affect gravity/damping. This area adds its gravity/damping values to whatever has been calculated so far (in [member priority] order). This area adds its gravity/damping values to whatever has been calculated so far (in [member priority] order), ignoring any lower priority areas. This area replaces any gravity/damping, even the defaults, ignoring any lower priority areas. This area replaces any gravity/damping calculated so far (in [member priority] order), but keeps calculating the rest of the areas.