In jMonkeyEngine 3, colors and textures are represented as Material objects.
The following Materials table shows you the Material Definitions that jMonkeyEngine 3 supports.
Unshaded.j3md and Lighting.j3md, they cover 90% of the cases.
Most Material parameters are optional. For example, it is okay to specify solely the DiffuseMap and NormalMap when using Lighting.j3md, and leave the other texture maps empty. In this case, you are only using a subset of the possible features, but that's fine if it already makes in the material look the way that you want. You can always add more texture maps later.
jMonkeyEngine supports illuminated and unshaded Material Definitions.
"Unshaded" materials look somewhat abstract because they ignore lighting and shading. Unshaded Materials work even if the scene does not include a light source. These Materials can be single-colored or textured. For example, they are used for cards and tiles, for the sky, billboards and UI elements, for toon-style games, or for testing.
| Standard Unshaded Material Definition | Usage | Material Parameters |
|---|---|---|
| Common/MatDefs/Misc/Unshaded.j3md | Standard, non-illuminated Materials. Use this for simple coloring and texturing, glow, and transparency. See also: Hello Material | Texture Maps setTexture("ColorMap", assetManager.loadTexture("")); setBoolean("SeparateTexCoord",true); setTexture("LightMap", assetManager.loadTexture("")); Colors setColor("Color", ColorRGBA.White); setBoolean("VertexColor",true); Glow setTexture("GlowMap", assetManager.loadTexture("")); setColor("GlowColor", ColorRGBA.White); |
Other useful, but less commonly used material definitions:
| Special Unshaded Material Definitions | Usage | Material Parameters |
|---|---|---|
| Common/MatDefs/Misc/Sky.j3md | A solid skyblue, or use with a custom SkyDome texture. See also: Sky | setTexture("TextureCubeMap", assetManager.loadTexture("")); setBoolean("SphereMap",true); setVector3("NormalScale", new Vector3f(0,0,0)); |
| Common/MatDefs/Terrain/Terrain.j3md | Splat textures for e.g. terrains. See also: Hello Terrain | setTexture("Texture1", assetManager.loadTexture("")); (red) setFloat("Texture1Scale",1f); setTexture("Texture2", assetManager.loadTexture("")); (green) setFloat("Texture2Scale",1f); setTexture("Texture3", assetManager.loadTexture("")); (blue) setFloat("Texture3Scale",1f); setTexture("Alpha", assetManager.loadTexture("")); |
| Common/MatDefs/Terrain/HeightBasedTerrain.j3md | A multi-layered texture for terrains. Specify four textures and a Vector3f describing the region in which each texture should appear: X = start height, Y = end height, Z = texture scale. Texture regions can overlap. For example: Specify a seafloor texture for the lowest areas, a sandy texture for the beaches, a grassy texure for inland areas, and a rocky texture for mountain tops. | setFloat("terrainSize",512f); setTexture("region1ColorMap", assetManager.loadTexture("")); setTexture("region2ColorMap", assetManager.loadTexture("")); setTexture("region3ColorMap", assetManager.loadTexture("")); setTexture("region4ColorMap", assetManager.loadTexture("")); setVector3("region1", new Vector3f(0,0,0)); setVector3("region2", new Vector3f(0,0,0)); setVector3("region3", new Vector3f(0,0,0)); setVector3("region4", new Vector3f(0,0,0)); Settings for steep areas: setTexture("slopeColorMap", assetManager.loadTexture("")); setFloat("slopeTileFactor",1f); |
| Common/MatDefs/Misc/Particle.j3md | Used with texture masks for particle effects, or for point sprites. The Quadratic value scales the particle for perspective view (formula). Does support an optional colored glow effect. See also: Hello Effects | setTexture("Texture", assetManager.loadTexture("")); setTexture("GlowMap", assetManager.loadTexture("")); setColor("GlowColor", ColorRGBA.White); setFloat("Quadratic",1f); setBoolean("PointSprite",true); |
jMonkeyEngine supports illuminated and unshaded Material Definitions.
Illuminated materials require a light source added to at least one of their parent nodes! (e.g. rootNode.) Illuminated materials are darker on the sides facing away from light sources. They use Phong illumination model (default), or the Ward isotropic gaussian specular shader (WardIso) which looks more like plastic. They do not cast drop shadows unless you use a FilterPostProcessor.
| Standard Illuminated Material Definition | Usage | Material Parameters |
|---|---|---|
| Common/MatDefs/Light/Lighting.j3md | Commonly used Material with Phong illumination. Use this material together with DiffuseMap, SpecularMap, BumpMap (NormalMaps, ParalaxMap) textures. Supports shininess, transparency, and plain material colors (Diffuse, Ambient, Specular colors). See also: Hello Material | Texture Maps setTexture("DiffuseMap", assetManager.loadTexture("")); setBoolean("UseAlpha",true);1) setTexture("NormalMap", assetManager.loadTexture("")); setBoolean("LATC",true); 2) setTexture("SpecularMap", assetManager.loadTexture("")); setFloat("Shininess",64f); setTexture("ParallaxMap", assetManager.loadTexture("")); setTexture("AlphaMap", assetManager.loadTexture("")); setFloat("AlphaDiscardThreshold",1f); setTexture("ColorRamp", assetManager.loadTexture("")); Glow setTexture("GlowMap", assetManager.loadTexture("")); setColor("GlowColor", ColorRGBA.White); Performance and quality setBoolean("VertexLighting",true); setBoolean("UseVertexColor",true); setBoolean("LowQuality",true); setBoolean("HighQuality",true); Material Colors setBoolean("UseMaterialColors",true); setColor("Diffuse", ColorRGBA.White); setColor("Ambient", ColorRGBA.White); setColor("Specular", ColorRGBA.White); Tangent shading: setBoolean("VTangent",true); setBoolean("Minnaert",true);3) setBoolean("WardIso",true);4) |
| Special Illuminated Material Definitions | Usage | Material Parameters |
|---|---|---|
| Common/MatDefs/Terrain/TerrainLighting.j3md | Same kind of multi-layered splat texture as Terrain.j3md, but with illumination and shading. Typically used for terrains, but works on any mesh. For every 3 splat textures, you need one alpha map. You can use a total of 11 texture maps in the terrain's splat texture: Note that diffuse and normal maps all count against that. For example, you can use a maximum of 9 diffuse textures, two of which can have normal maps; or, five textures with both diffuse and normal maps. | Texture Splat Maps setTexture("DiffuseMap", assetManager.loadTexture("")); setFloat("DiffuseMap_0_scale",1f); setTexture("NormalMap", assetManager.loadTexture("")); setTexture("DiffuseMap_1", assetManager.loadTexture("")); setFloat("DiffuseMap_1_scale",1f); setTexture("NormalMap_1", assetManager.loadTexture("")); setTexture("DiffuseMap_2", assetManager.loadTexture("")); setFloat("DiffuseMap_2_scale",1f); setTexture("NormalMap_2", assetManager.loadTexture("")); setTexture("DiffuseMap_3", assetManager.loadTexture("")); setFloat("DiffuseMap_3_scale",1f); setTexture("NormalMap_3", assetManager.loadTexture("")); etc, up to 11. Alpha Maps setTexture("AlphaMap", assetManager.loadTexture("")); setTexture("AlphaMap_1", assetManager.loadTexture("")); setTexture("AlphaMap_2", assetManager.loadTexture("")); Glowing setTexture("GlowMap", assetManager.loadTexture("")); setColor("GlowColor", ColorRGBA.White); Miscellaneous setColor("Diffuse", ColorRGBA.White); setColor("Ambient", ColorRGBA.White); setFloat("Shininess",64f); setColor("Specular", ColorRGBA.White); setTexture("SpecularMap", assetManager.loadTexture("")); setBoolean("WardIso",true); setBoolean("useTriPlanarMapping",true); setBoolean("isTerrainGrid",true); |
| Common/MatDefs/Light/Reflection.j3md | Reflective glass material with environment map (CubeMap/SphereMap). See also: TestCubeMap.java | setTexture("Texture", assetManager.loadTexture("")); setBoolean("SphereMap",true); |
| Material Definition | Usage |
|---|---|
| Common/MatDefs/Misc/ShowNormals.j3md | A color gradient calculated from the model's surface normals. You can use this built-in material to debug the generation of normals in meshes, to preview models that have no material and no lights, or as fall-back default material. This built-in material has no parameters. |
| Material Option | Description | Example |
|---|---|---|
| getAdditionalRenderState().setBlendMode(BlendMode.Off); | This is the default, no transparency. | Use for all opaque objects like walls, floors, people… |
| getAdditionalRenderState().setBlendMode(BlendMode.Alpha); | Interpolates the background pixel with the current pixel by using the current pixel's alpha. | Use this for normal every-day translucency: Frosted window panes, ice, glass, alpha-blended vegetation textures… |
| getAdditionalRenderState().setDepthWrite(false); | Disables writing of the pixel's depth value to the depth buffer. | Use this on Materials if you have several transparent/translucent objects obscuring one another, but you want to see through both. |
| getAdditionalRenderState().setAlphaFallOff(0.5f); getAdditionalRenderState().setAlphaTest(true) | Enables Alpha Testing with a "AlphaDiscardThreshold" in the AlphaMap. | Activate Alpha Testing for (partially) transparent objects such as foliage, hair, etc. Deactivate Alpha Testing for gradually translucent objects, such as colored glass, smoked glass, ghosts. |
| getAdditionalRenderState().setBlendMode(BlendMode.Additive); | Additive alpha blending adds colors in a commutative way, i.e. the result does not depend on the order of transparent layers, since it adds the scene's background pixel color to the current pixel color. This is useful if you have lots of transparent textures overlapping and don't care about the order. Note: Viewed in front of a white background, Additive textures become fully transparent! | This is the default for Particle.j3md-based textures that have a black color background. |
| getAdditionalRenderState().setBlendMode(BlendMode.AlphaAdditive); | Same as "Additive", except first it multiplies the current pixel color by the pixel alpha. | This can be used for particle effects that have alpha as background. |
| getAdditionalRenderState().setBlendMode(BlendMode.Color); | Blends by color. | Generally useless. |
| getAdditionalRenderState().setBlendMode(BlendMode.Modulate); | Multiplies the background pixel by the current pixel. | ? |
| getAdditionalRenderState().setBlendMode(BlendMode.ModulateX2); | Same as "Modulate", except the result is doubled. | ? |
| getAdditionalRenderState().setBlendMode(BlendMode.PremultAlpha); | Pre-multiplied alpha blending. E.g. if the color of the object has already been multiplied by its alpha, this is used instead of "Alpha" blend mode. | For use with Premult Alpha textures. |
If the DiffuseMap has an alpha channel, use:
mat.setBoolean("UseAlpha",true);
Later, put the Geometry (not the Material!) in the appropriate render queue
geo.setQueueBucket(Bucket.Translucent);
geo.setQueueBucket(Bucket.Transparent);
| Material Option | Usage | Example |
|---|---|---|
| getAdditionalRenderState().setFaceCullMode(FaceCullMode.Back); | Activate back-face culling. Mesh faces that are not facing the camera are not rendered, which saves time. Backface culling is activated by default as a major optimization. | The backside of mesh polygons (and the inside of models) is invisible. |
| getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off); | Nothing is culled. Both mesh faces are rendered, even if they face away from the camera. Slow. | Sometimes used to debug custom meshes if you messed up some of the polygon sides, or for special shadow effects. |
| getAdditionalRenderState().setFaceCullMode(FaceCullMode.Front); | Activate front-face culling. Mesh faces facing the camera are not rendered. | Typically not used because you wouldn't see anything. |
| getAdditionalRenderState().setFaceCullMode(FaceCullMode.FrontAndBack) | Cull both backfaces and frontfaces. | Use this as an efficient way to make an object temporarily invisible, while keeping all its other in-game properties (node attachment, collision shapes, interactions, etc) active. |
| getAdditionalRenderState().setColorWrite(false); | Disable writing the color of pixels. | Use this together with setDepthWrite(true) to write pixels only to the depth buffer, for example. |
| getAdditionalRenderState().setPointSprite(true); | Enables point-sprite mode, e.g. meshes with "Mode.Points" will be rendered as textured sprites. Note that gl_PointCoord must be set in the shader. | Point sprites are used internally for hardware accelerated particle effects. |
| getAdditionalRenderState().setPolyOffset(); | Enable polygon offset. | Use this when you have meshes that have triangles really close to each over (e.g. Coplanar), it will shift the depth values to prevent Z-fighting. |