godot-steering-ai-framework/project/demos/SeekFlee/Boundary.gd
Răzvan C. Rădulescu 1f44bace3e Improve and review the available demos
- simplify code when possible
- add a simple info panel
- adhere to the "new" gdscript guidelines
2020-01-16 17:04:27 +02:00

15 lines
265 B
GDScript

extends StaticBody2D
# Draws the bounding box of the static body wall.
var rect: Rect2
func _ready() -> void:
var extents: Vector2 = $CollisionShape2D.shape.extents
rect = Rect2(-extents, extents*2)
func _draw() -> void:
draw_rect(rect, Color.yellowgreen)