Duda sobre error desconocido

drone.despegar()
gato.iniciarRaton()

#Escribe aquí tu código
print(gato.dameDrone())
while (True):
(x,y,area) = drone.dameObjeto()

vx = (200 - area) * 0,5
vy = (240 - x) * 0,5
vz = (160 - y) * 0,5
az = (240 - x) * 0,5

drone.enviarVelocidad(vx,vy,vz,az)

print(vx,vy,vz,az)

ValueErrorTraceback (most recent call last)
in ()
6 print(gato.dameDrone())
7 while (True):
----> 8 (x,y,area) = drone.dameObjeto()
9
10 vx = (200 - area) * 0,5

ValueError: need more than 2 values to unpack