2023-12-04 14:19:59 +01:00
|
|
|
extends DeckNode
|
|
|
|
|
|
|
|
|
|
|
|
func _init() -> void:
|
|
|
|
name = "Compose Vector"
|
|
|
|
node_type = "vector_compose"
|
2023-12-14 19:15:42 +01:00
|
|
|
description = "Returns a vector from two numeric inputs."
|
2023-12-04 14:19:59 +01:00
|
|
|
category = "math"
|
|
|
|
|
|
|
|
add_input_port(
|
|
|
|
DeckType.Types.NUMERIC,
|
|
|
|
"X",
|
|
|
|
"field"
|
|
|
|
)
|
|
|
|
add_input_port(
|
|
|
|
DeckType.Types.NUMERIC,
|
|
|
|
"Y",
|
|
|
|
"field"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_output_port(
|
|
|
|
DeckType.Types.DICTIONARY,
|
|
|
|
"Vector"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-12-04 15:16:39 +01:00
|
|
|
func _value_request(_on_port: int) -> Dictionary:
|
2023-12-10 15:01:31 +01:00
|
|
|
var x = float(resolve_input_port_value(0))
|
|
|
|
var y = float(resolve_input_port_value(1))
|
2023-12-04 14:19:59 +01:00
|
|
|
return {"x": x, "y": y}
|