10 lines
No EOL
165 B
GDScript
10 lines
No EOL
165 B
GDScript
extends Node2D
|
|
class_name Flowers
|
|
|
|
@onready var outline = $AreaHighlight
|
|
|
|
func show_outline():
|
|
outline.visible = true
|
|
|
|
func hide_outline():
|
|
outline.visible = false |