NEO-25: fix Vector3 anchor parse (extra paren) in interactable_world_builder

pull/48/head
VinPropane 2026-04-24 20:39:29 -04:00
parent ce54fcc44f
commit 90bd71d336
1 changed files with 3 additions and 1 deletions

View File

@ -87,7 +87,9 @@ static func _anchor_from_row(rd: Dictionary) -> Vector3:
return Vector3.ZERO return Vector3.ZERO
var ad: Dictionary = a var ad: Dictionary = a
return Vector3( return Vector3(
float(ad.get("x", 0.0)), float(ad.get("y", 0.0)), float(ad.get("z", 0.0))) float(ad.get("x", 0.0)),
float(ad.get("y", 0.0)),
float(ad.get("z", 0.0)),
) )