mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
14 lines
226 B
GDScript3
14 lines
226 B
GDScript3
|
tool
|
||
|
extends Line2D
|
||
|
|
||
|
export (Color) var inner_color := Color() setget set_inner_color
|
||
|
|
||
|
|
||
|
func _draw() -> void:
|
||
|
draw_colored_polygon(points, inner_color)
|
||
|
|
||
|
|
||
|
func set_inner_color(val: Color) -> void:
|
||
|
inner_color = val
|
||
|
update()
|