mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-06 03:37:13 +08:00
12 lines
332 B
GDScript
12 lines
332 B
GDScript
|
|
@tool
|
||
|
|
extends FullscreenPanelBase
|
||
|
|
|
||
|
|
@onready var initialFeedSelection: HBoxContainer = $%initialFeedSelection
|
||
|
|
|
||
|
|
func beforeOpen(_args: Array = []):
|
||
|
|
for feed in initialFeedSelection.get_children():
|
||
|
|
feed.queue_free()
|
||
|
|
for feed in ComponentManager.feeds:
|
||
|
|
var card = feed.instantiate() as Feed
|
||
|
|
initialFeedSelection.add_child(card)
|