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). Return an individual bit on the layer mask. Describes whether other areas will collide with this one on the given layer. Return an individual bit on the collision mask. Describes whether this area will collide with others on the given layer. Returns a list of intersecting [code]Area2D[/code]s. Returns a list of intersecting [PhysicsBody2D]s. If [code]true[/code] the given area overlaps the Area2D. If [code]true[/code] the given body overlaps the Area2D. 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. Values range from [code]0[/code] (no damping) to [code]1[/code] (full damping). The name of the area's audio bus. If [code]true[/code] the area's audio bus overrides the default audio bus. Default value: [code]false[/code]. 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 [code]collision_mask[/code]. The physics layers this area scans to determine collision detection. 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 [code]gravity_vec[/code]). Also see [code]space_override[/code]. Default value: [code]false[/code]. The area's gravity vector (not normalized). If gravity is a point (see [method is_gravity_a_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. Values range from [code]0[/code] (no damping) to [code]1[/code] (full damping). If [code]true[/code] other monitoring areas can detect this area. Default value: [code]true[/code]. If [code]true[/code] the area detects bodies or areas entering and exiting it. Default value: [code]true[/code]. The area's priority. Higher priority areas are processed first. Default value: 0. Override mode for gravity and damping calculations within this area. See the SPACE_OVERRIDE_* constants for values. Emitted when another area enters. Emitted when another area exits. Emitted when another area enters, reporting which shapes overlapped. Emitted when another area exits, reporting which shapes were overlapping. Emitted when a [PhysicsBody2D] object enters. Emitted when a [PhysicsBody2D] object exits. Emitted when a [PhysicsBody2D] object enters, reporting which shapes overlapped. Emitted when a [PhysicsBody2D] object exits, reporting which shapes were overlapping. This area does not affect gravity/damping. This area adds its gravity/damping values to whatever has been calculated so far (in [code]priority[/code] order). This area adds its gravity/damping values to whatever has been calculated so far (in [code]priority[/code] 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 [code]priority[/code] order), but keeps calculating the rest of the areas.