Hello Everyone!!
I'm doing a project in my university using th HTC VIVE and LEAP MOTION.The project purpose is to check how people grasp object.
Is there any option to extract the data(position of the hands) from Unity to an Excel file?
Thanks.
I made a solution to capture hand data each second and serialize it to an XML file. I gather all data by using a for loop on the rigged hand's fingers variable in a serializable struct and then use c#'s FileStream and XmlSerializer to write to file. This will be a file type that could be opened and analyzed in excel. E: You can also get the palm position and rotation as well and add it to the struct.