Hello,
I was wondering if the nightly builds support mtl already. Couldnt find the answer with Google so thats why Im asking.
Greetings, Kajos
Te obj importer always supported them… But you cannot load them as a “standalone” material which would not make much sense anyway.
Ah ok, cool! Feel a newb to ask, but can you supply the line that applies the material?
There is no “line that applies the material”, when you load the model the .mtl file is used to generate its material.
Yeah, that makes sense. I didnt get all the colors from Blender so got confused, but I messed up in Blender. Thanks!
On second thought, I dont think I messed up in Blender, sorry. I used a model with materials applied to the meshes and the materials consist only of colors. Still it turns up black.
http://pastebin.ca/2069009 for the obj file
http://pastebin.ca/2069010 for the mtl file
Any help would be very much appreciated
You’ll most likely need a light source.
I have a directional light, or does it need to be a pointlight or somin?
DirectionalLight sun = new DirectionalLight();
Vector3f lightDir = new Vector3f(0f, -1f, -0.1f);
sun.setDirection(lightDir);
sun.setColor(ColorRGBA.White.clone().multLocal(2));
rootNode.addLight(sun);
However Lighting.j3md with colors doesnt give anything else than black as well.
Material mat = new Material(main.getAssetManager(), “Common/MatDefs/Light/Lighting.j3md”);
mat.setFloat(“Shininess”, 32f);
mat.setColor(“Ambient”, ColorRGBA.Black);
mat.setColor(“Diffuse”, ColorRGBA.Green);
mat.setColor(“Specular”, ColorRGBA.Red);
actorNode.setMaterial(mat);
So that would point to a lighting problem I gues…
I used environment mapping which showed me colors.
…which does not do the trick anymore in the latest updates. I would really like some help with this, the project depends a lot on the colors on the model. I got them working by using environment mapping, but now that doesnt work either. I tried setting the bucket.opaque, thinking it might ignore lights, but that doesnt do it either.
Im using Blender 2.57 for my exporting, enabled HQ normals or regular normals, both dont work. JME keeps giving errors: cant find normals…
It also gives a lot of errors with importing:
Maybe Theres a way to import obj with the unshaded jm3d?
Or something to set the ambientcolor?
Material m = ((Geometry) geom).getMaterial();
m.setColor(“Ambient”, (ColorRGBA)m.getParam(“Diffuse”).getValue());
init:
Deleting: C:UsersKajosDocumentsjMonkeyProjectsBattleshipSimulatorbuildbuilt-jar.properties
deps-jar:
Updating property file: C:UsersKajosDocumentsjMonkeyProjectsBattleshipSimulatorbuildbuilt-jar.properties
compile:
run:
26-mei-2011 0:42:01 com.jme3.system.JmeSystem initialize
INFO: Running on jMonkey Engine 3 Alpha 0.6
26-mei-2011 0:42:01 com.jme3.system.Natives extractNativeLibs
INFO: Extraction Directory #1: file:/C:/Program%20Files/jmonkeyplatform/jmonkeyplatform/libs/
26-mei-2011 0:42:01 com.jme3.system.Natives extractNativeLibs
INFO: Extraction Directory #2: C:UsersKajosDocumentsjMonkeyProjectsBattleshipSimulator
26-mei-2011 0:42:01 com.jme3.system.Natives extractNativeLibs
INFO: Extraction Directory #3: C:UsersKajosDocumentsjMonkeyProjectsBattleshipSimulator
26-mei-2011 0:42:01 com.jme3.system.Natives extractNativeLib
WARNING: Cannot locate native library: windows/bulletjme.dll
26-mei-2011 0:42:02 com.jme3.system.lwjgl.LwjglAbstractDisplay run
INFO: Using LWJGL 2.7.1
26-mei-2011 0:42:02 com.jme3.system.lwjgl.LwjglDisplay createContext
INFO: Selected display mode: 640 x 480 x 0 @0Hz
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: Adapter: igdumd64
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: Driver Version: null
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: Vendor: Intel
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: OpenGL Version: 2.1.0 - Build 8.15.10.2202
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: Renderer: Intel(R) HD Graphics
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglContext printContextInitInfo
INFO: GLSL Ver: 1.20 - Intel Build 8.15.10.2202
26-mei-2011 0:42:03 com.jme3.system.lwjgl.LwjglTimer
INFO: Timer resolution: 1.000 ticks per second
26-mei-2011 0:42:03 com.jme3.renderer.lwjgl.LwjglRenderer initialize
INFO: Caps: [FrameBuffer, FrameBufferMRT, OpenGL20, OpenGL21, ARBprogram, GLSL100, GLSL110, GLSL120, VertexTextureFetch, FloatTexture, FloatColorBuffer, FloatDepthBuffer, PackedFloatTexture, SharedExponentTexture, PackedFloatColorBuffer, NonPowerOfTwoTextures, MeshInstancing, VertexBufferArray]
26-mei-2011 0:42:03 com.jme3.asset.DesktopAssetManager
INFO: DesktopAssetManager created.
26-mei-2011 0:42:03 com.jme3.renderer.Camera
INFO: Camera created (W: 640, H: 480)
26-mei-2011 0:42:03 com.jme3.renderer.Camera
INFO: Camera created (W: 640, H: 480)
26-mei-2011 0:42:03 com.jme3.input.lwjgl.LwjglMouseInput initialize
INFO: Mouse created.
26-mei-2011 0:42:03 com.jme3.input.lwjgl.LwjglKeyInput initialize
INFO: Keyboard created.
26-mei-2011 0:42:04 com.jme3.audio.lwjgl.LwjglAudioRenderer initInThread
INFO: AudioRenderer supports 64 channels
26-mei-2011 0:42:04 com.jme3.audio.lwjgl.LwjglAudioRenderer initInThread
INFO: Audio effect extension version: 1.0
26-mei-2011 0:42:04 com.jme3.audio.lwjgl.LwjglAudioRenderer initInThread
INFO: Audio max auxilary sends: 1
26-mei-2011 0:42:04 com.jme3.material.MaterialDef
INFO: Loaded material definition: Unshaded
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Gui Node)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (BitmapFont) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Statistics View)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (Statistics View) attached to this node (Gui Node)
26-mei-2011 0:42:04 com.jme3.material.MaterialDef
INFO: Loaded material definition: Sky Plane
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (Sky) attached to this node (Root Node)
26-mei-2011 0:42:04 com.jme3.renderer.Camera
INFO: Camera created (W: 1, H: 1)
26-mei-2011 0:42:04 com.jme3.material.MaterialDef
INFO: Loaded material definition: Phong Lighting
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader readFace
WARNING: Edge or polygon detected in OBJ. Ignored.
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader readFace
WARNING: Edge or polygon detected in OBJ. Ignored.
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader readFace
WARNING: Edge or polygon detected in OBJ. Ignored.
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader readFace
WARNING: Edge or polygon detected in OBJ. Ignored.
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader readFace
WARNING: Edge or polygon detected in OBJ. Ignored.
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-0 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-0) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-1 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-1) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-2 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-2) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-3 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-3) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-4 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-4) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-5 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-5) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-6 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-6) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-7 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-7) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh ship-geom-8 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-geom-8) attached to this node (ship-objnode)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (ship-objnode) attached to this node (null)
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Root Node)
26-mei-2011 0:42:04 com.jme3.material.MaterialDef
INFO: Loaded material definition: Solid Color
26-mei-2011 0:42:04 com.jme3.scene.Node attachChild
INFO: Child (Flathit) attached to this node (null)
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-0 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-0) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-1 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-1) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-2 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-2) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-3 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-3) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-4 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-4) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-5 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-5) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-6 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-6) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-7 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-7) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-8 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-8) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-9 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-9) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-10 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-10) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-11 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-11) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-12 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-12) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-13 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-13) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-14 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-14) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-15 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-15) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-16 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-16) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-17 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-17) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-18 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-18) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-19 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-19) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-20 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-20) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-21 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-21) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-22 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-22) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-23 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-23) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-24 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-24) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-25 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-25) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-26 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-26) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-27 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-27) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-28 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-28) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-29 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-29) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-30 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-30) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-31 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-31) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-32 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-32) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-33 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-33) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-34 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-34) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-35 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-35) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-36 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-36) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-37 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-37) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-38 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-38) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh cargoship-geom-39 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-geom-39) attached to this node (cargoship-objnode)
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (cargoship-objnode) attached to this node (null)
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Root Node)
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
Unknown statement in OBJ! o
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-0 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-0) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-1 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-1) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-2 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-2) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-3 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-3) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-4 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-4) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.plugins.OBJLoader createGeometry
WARNING: OBJ mesh submarine-geom-5 doesnt contain normals! It might not display correctly
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-geom-5) attached to this node (submarine-objnode)
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (submarine-objnode) attached to this node (null)
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (null) attached to this node (Root Node)
26-mei-2011 0:42:05 com.jme3.scene.Node attachChild
INFO: Child (BOOM!) attached to this node (Root Node)
26-mei-2011 0:42:05 com.jme3.renderer.Camera
INFO: Camera created (W: 512, H: 512)
26-mei-2011 0:42:05 com.jme3.material.MaterialDef
INFO: Loaded material definition: Advanced Water
26-mei-2011 0:42:05 com.jme3.material.MaterialDef
INFO: Loaded material definition: Bloom
26-mei-2011 0:42:05 com.jme3.material.MaterialDef
INFO: Loaded material definition: Bloom
26-mei-2011 0:42:05 com.jme3.material.MaterialDef
INFO: Loaded material definition: Bloom
26-mei-2011 0:42:05 com.jme3.material.MaterialDef
INFO: Loaded material definition: Bloom Final
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform g_NormalMatrix is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseMaterialColors is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Color is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseMaterialColors is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Ambient is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Diffuse is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Specular is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Shininess is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_EnvMap is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_FresnelParams is not declared in shader.
26-mei-2011 0:42:05 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Color is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_FoamMap is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_NormalMap is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_FoamExistence is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseRipples is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseHQShoreline is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseSpecular is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseFoam is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_UseRefraction is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_FoamIntensity is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_Extract is not declared in shader.
26-mei-2011 0:42:06 com.jme3.renderer.lwjgl.LwjglRenderer updateUniformLocation
INFO: Uniform m_VertexColor is not declared in shader.
26-mei-2011 0:42:11 com.jme3.input.lwjgl.LwjglMouseInput destroy
INFO: Mouse destroyed.
26-mei-2011 0:42:11 com.jme3.input.lwjgl.LwjglKeyInput destroy
INFO: Keyboard destroyed.
26-mei-2011 0:42:11 com.jme3.system.lwjgl.LwjglAbstractDisplay deinitInThread
INFO: Display destroyed.
BUILD SUCCESSFUL (total time: 12 seconds)