Added a Script Template for making DeckNodes

This commit is contained in:
Eroax 2023-11-22 03:06:54 -07:00
parent fa5e9997ef
commit 882d817310

View file

@ -0,0 +1,14 @@
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