8 lines
151 B
GDScript
8 lines
151 B
GDScript
extends Control
|
|
|
|
func _process(delta: float) -> void:
|
|
queue_redraw()
|
|
|
|
func _draw() -> void:
|
|
draw_circle(Vector2.ZERO,0,Color(1,1,1,1),true,10,true)
|