9 lines
248 B
GDScript3
9 lines
248 B
GDScript3
|
extends Control
|
||
|
|
||
|
@onready var color_top := %ColorRectTop as ColorRect
|
||
|
@onready var color_bottom := %ColorRectBottom as ColorRect
|
||
|
|
||
|
func _ready() -> void:
|
||
|
color_top.color = GlobalConfig.COLOR_BOARDER
|
||
|
color_bottom.color = GlobalConfig.COLOR_BOARDER
|