Attention

You are reading the latest (unstable) version of this documentation, which may document features not available or compatible with Godot 3.x.

Work in progress

Godot documentation is being updated to reflect the latest changes in version 4.0. Some documentation pages may still state outdated information. This banner will tell you if you're reading one of such pages.

The contents of this page are up to date. If you can still find outdated information, please open an issue.

SegmentShape2D

Inherits: Shape2D < Resource < RefCounted < Object

Segment shape resource for 2D physics.

Description

2D segment shape to be added as a direct child of a PhysicsBody2D or Area2D using a CollisionShape2D node. Consists of two points, a and b.

Performance: Being a primitive collision shape, SegmentShape2D is fast to check collisions against (though not as fast as CircleShape2D).

Properties

Vector2

a

Vector2(0, 0)

Vector2

b

Vector2(0, 10)


Property Descriptions

Vector2 a = Vector2(0, 0)

The segment's first point position.


Vector2 b = Vector2(0, 10)

The segment's second point position.