2023-06-13 17:23:10 +02:00
|
|
|
extends DeckNode
|
|
|
|
|
|
|
|
|
|
|
|
func _init() -> void:
|
2023-07-21 07:30:12 +02:00
|
|
|
name = "Get Deck Var"
|
|
|
|
node_type = name.to_snake_case()
|
2023-12-14 19:15:42 +01:00
|
|
|
description = "Retrieve a deck variable."
|
2023-11-23 07:38:10 +01:00
|
|
|
category = "general"
|
2023-07-21 07:30:12 +02:00
|
|
|
|
2023-06-13 17:23:10 +02:00
|
|
|
add_output_port(
|
2023-12-05 00:01:47 +01:00
|
|
|
DeckType.Types.ANY,
|
2023-06-13 17:23:10 +02:00
|
|
|
"Variable",
|
|
|
|
"field"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-12-04 15:16:39 +01:00
|
|
|
func _value_request(_from_port: int) -> Variant:
|
2023-06-13 17:23:10 +02:00
|
|
|
var key = ports[0].value_callback.call()
|
2023-12-04 14:19:59 +01:00
|
|
|
return _belonging_to.variable_stack.get(key)
|