miggor-StreamGraph/script_templates/DeckNode/node_template.gd

16 lines
236 B
GDScript3
Raw Normal View History

extends DeckNode
func _init() -> void:
name = ""
node_type = name.to_snake_case()
description = ""
category = ""
props_to_serialize = []
func _receive(to_input_port: int, data: Variant, extra_data: Array = []) -> void:
pass