Unshaded Terrain with Multiple Texture Layers [solved]

@ndebruyn

My current method sets the texture to repeat. It makes no difference

This is my current method… Any suggestions would be helpful

[java] Material tat = new Material(assetManager, “Common/MatDefs/Terrain/Terrain.j3md”);

    if (geom.getMaterial().getTextureParam("DiffuseMap_1") != null) {
        
      tat.setTexture("Alpha", geom.getMaterial().getTextureParam("AlphaMap").getTextureValue());
      
      if (geom.getMaterial().getTextureParam("DiffuseMap") != null) {
      tat.setTexture("Tex1", geom.getMaterial().getTextureParam("DiffuseMap").getTextureValue());
      tat.getTextureParam("Tex1").getTextureValue().setWrap(Texture.WrapMode.Repeat);
      }
    
      if (geom.getMaterial().getTextureParam("DiffuseMap_1") != null) {
      tat.setTexture("Tex2", geom.getMaterial().getTextureParam("DiffuseMap_1").getTextureValue());
      tat.getTextureParam("Tex2").getTextureValue().setWrap(Texture.WrapMode.Repeat);
      }
    
      if (geom.getMaterial().getTextureParam("DiffuseMap_2") != null) {
      tat.setTexture("Tex3", geom.getMaterial().getTextureParam("DiffuseMap_2").getTextureValue());
      tat.getTextureParam("Tex3").getTextureValue().setWrap(Texture.WrapMode.Repeat);
      }

      geom.setMaterial(tat);
      
      }[/java]