JME version 1.0 and using MaxToJme
Noticed that when materials are created by a class MaterialBlock is used to create textures. This texture is hardcoded as follows
t.setMipmapState(Texture.MM_LINEAR);
t.setFilter(Texture.FM_LINEAR);
Any thoughts on allowing this to be overriden in JME 2.0 or within other model loaders. Perhaps as a suggestion to allow the maxToJme to have an added convert method of
public abstract void convert(InputStream format,OutputStream jMEFormat, MaterialBlock customeMaterialBlock) throws IOException
and to also make the following method in MaterialBlock protected
private Texture createTexture(TextureChunk tc)
Have not looked at 2.0 yet or other Model Loaders, although that is the intention.