mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
15 lines
223 B
GDScript3
15 lines
223 B
GDScript3
|
extends DeckNode
|
||
|
|
||
|
|
||
|
func _init() -> void:
|
||
|
name = ""
|
||
|
node_type = name.to_snake_case()
|
||
|
description = ""
|
||
|
|
||
|
props_to_serialize = []
|
||
|
|
||
|
|
||
|
|
||
|
func _receive(to_input_port: int, data: DeckType, extra_data: Array = []) -> void:
|
||
|
pass
|