mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-24 05:37:15 +01:00
fb538b72cb
The GST namespace has been added to prevent class name conflicts, and the project has been reorganized to make extensions and purpose easier.
17 lines
285 B
GDScript
17 lines
285 B
GDScript
extends StaticBody2D
|
|
"""
|
|
Draws the bounding box of the static body wall.
|
|
"""
|
|
|
|
|
|
var rect: Rect2
|
|
|
|
|
|
func _ready() -> void:
|
|
var extents: = ($CollisionShape2D.shape as RectangleShape2D).extents
|
|
rect = Rect2(-extents, extents*2)
|
|
|
|
|
|
func _draw() -> void:
|
|
draw_rect(rect, Color.yellowgreen)
|