Ogre exporter, default blend mode (one zero)

### Eclipse Workspace Patch 1.0
#P jME2
Index: src/com/jmex/model/ogrexml/MaterialLoader.java
===================================================================
--- src/com/jmex/model/ogrexml/MaterialLoader.java   (revision 4337)
+++ src/com/jmex/model/ogrexml/MaterialLoader.java   (working copy)
@@ -303,6 +303,13 @@
                 as.setDestinationFunction(DestinationFunction.SourceColor);
             }else if (mode.equals("add")){
                 as.setBlendEquation(BlendEquation.Add);
+            }else if (mode.equals("one")){
+               mode = nextStatement();
+               reader.nextToken();
+               if(mode.equals("zero"))// one zero => ogre3d default (opaque)
+               {
+                  as.setBlendEnabled(false);
+               }
             }else{
                 throw new IOException("Unknown scene_blend mode: "+mode);
             }



A small change to deal with the default blend case some ogre exporters have.