How to send a vector object. I am trying to send an object's location in vector format over a udp socket connection.
socket.sendto(self.cube.worldPosition,server_addr)
but i get the following error: TypeError: 'Vector' does not support the buffer interface
How can i achieve this or is there any other way to send the position of the object?