NEO-25: fix Vector3 anchor parse (extra paren) in interactable_world_builder
parent
ce54fcc44f
commit
90bd71d336
|
|
@ -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)),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue