9596979899100101102103104105
{ elements = line.trim().split("\\s+"); if(line.contains("Frames")) { motion = new Motion(Integer.valueOf(elements[1]), channels); } else if(line.contains("Frame Time")) { motion.setFrameLength(Double.valueOf(elements[2])); }
64656667686970
* * @param mot The motion to use for this motion file. */ public void setMotion(Motion motion) { this.motion = new Motion(motion.getData()); }