While working my way through theFlagRush tutorial eclipse tells me that "JmeBinaryReader cannot be resolved to a type". The code is cut directly from the tutorial and it seems to work fine for them but I can't seem to be able to figure out why it is not working. Help would be appreciated. :?
public static void load(String name, Node rNode){
Node model = null;
try {
MaxToJme C1 = new MaxToJme();
ByteArrayOutputStream BO = new ByteArrayOutputStream();
URL maxFile = TestProjectedWater.class.getClassLoader().getResource("jmetest/data/model/bike.3ds");
C1.convert(new BufferedInputStream(maxFile.openStream()),BO);
JmeBinaryReader jbr = new JmeBinaryReader();
jbr.setProperty("bound", "box");
model = jbr.loadBinaryFormat(new ByteArrayInputStream(BO.toByteArray()));
//scale it to be MUCH smaller than it is originally
model.setLocalScale(.0025f);
} catch (IOException e) {
e.printStackTrace();
}
}