fix vector subtract

This commit is contained in:
Lera Elvoé 2024-03-19 10:43:27 +03:00
parent badddced3e
commit 6f19a0b335
No known key found for this signature in database

View file

@ -25,21 +25,24 @@ func _init() -> void:
func _receive(port : int, data : Variant) -> void:
var va = data
if !DeckType.is_valid_vector(data):
DeckHolder.logger.log_node("Vector Sub: Port %d: Supplied data was not a valid Vector. Please ensure it is a Dictionary with keys 'x' and 'y'" % port)
return
var va
var vb
if port == 0:
va = data
vb = await request_value_async(1)
else:
vb = await request_value_async(0)
va = await request_value_async(0)
vb = data
if (not DeckType.is_valid_vector(va)) or (not DeckType.is_valid_vector(vb)):
DeckHolder.logger.log_node("Vector Sub: Port %d: one of the inputs is not a valid Vector. Please ensure it is a Dictionary with keys 'x' and 'y'." % port)
return
var calc = subtract_vectors(va, vb)