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