Searched defs:matList (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
H A DMTLLoader.java58 protected MaterialList matList; field in class:MTLLoader
79 matList = null;
159 matList.put(matName, material);
298 matList = new MaterialList();
319 MaterialList list = matList;
H A DOBJLoader.java86 protected MaterialList matList; field in class:OBJLoader
173 matList = null;
279 if (matList != null && matFaces.containsKey(currentMatName)){
323 matList = (MaterialList) assetManager.loadAsset(mtlKey);
328 if (matList != null){
330 for (String matName : matList.keySet()){
370 // if (!matList.containsKey(currentMatName))
398 if (matName != null && matList != null){
400 material = matList.get(matName);

Completed in 102 milliseconds