mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
3f58cc4921
Based on the 2D Beginner Project look, these demos now have the colorful GDQuest "theme" to them. This had the effect of removing the circle and triangle/ship sprites as everything is drawn in Godot directly.
15 lines
226 B
GDScript
15 lines
226 B
GDScript
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()
|