5 lines
124 B
GDScript
5 lines
124 B
GDScript
extends Node2D
|
|
@export var radius : float;
|
|
|
|
func _draw():
|
|
draw_circle(Vector2.ZERO, radius, Color.BLACK, true, -1.0, true)
|