mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
17 lines
285 B
GDScript
17 lines
285 B
GDScript
extends StaticBody2D
|
|
# Draws the bounding box of the static body wall.
|
|
|
|
|
|
const COLOR := Color("8fde5d")
|
|
|
|
var rect: Rect2
|
|
|
|
|
|
func _ready() -> void:
|
|
var extents: Vector2 = $CollisionShape2D.shape.extents
|
|
rect = Rect2(-extents, extents*2)
|
|
|
|
|
|
func _draw() -> void:
|
|
draw_rect(rect, COLOR)
|