7 lines
114 B
GDScript
7 lines
114 B
GDScript
extends Button
|
|
|
|
|
|
func _draw() -> void:
|
|
if button_pressed:
|
|
draw_circle(Vector2(9, 9), 6, Color(0, 0.5, 0, 0.5))
|