OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matName
(Results
1 - 6
of
6
) sorted by null
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java
64
private String
matName
;
96
matName
= subsplit[0].trim();
127
list.put(
matName
, material);
128
List<String> matAliases = matExts.getNameMappings(
matName
);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java
70
protected String
matName
;
118
matName
= null;
159
matList.put(
matName
, material);
163
if (
matName
!= null){
170
matName
= name;
313
if (
matName
!= null){
OBJLoader.java
330
for (String
matName
: matList.keySet()){
331
matFaces.put(
matName
, new ArrayList<Face>());
388
protected Geometry createGeometry(ArrayList<Face> faceList, String
matName
) throws IOException{
398
if (
matName
!= null && matList != null){
400
material = matList.get(
matName
);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java
540
String
matName
= ic.readString("materialName", null);
541
if (
matName
!= null) {
545
material = im.getAssetManager().loadMaterial(
matName
);
548
logger.log(Level.FINE, "Cannot locate {0} for geometry {1}", new Object[]{
matName
, key});
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java
66
private String
matName
;
152
logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey,
matName
});
451
matName
= split[1].trim();
454
list.put(
matName
, mat);
MeshLoader.java
213
private void applyMaterial(Geometry geom, String
matName
) {
215
if (
matName
.endsWith(".j3m")) {
218
mat = assetManager.loadMaterial(
matName
);
221
if (!ex.getMessage().equals(
matName
)){
227
mat = materialList.get(
matName
);
232
logger.log(Level.WARNING, "Cannot locate {0} for model {1}", new Object[]{
matName
, key});
243
private void startSubMesh(String
matName
, String usesharedvertices, String use32bitIndices, String opType) throws SAXException {
284
applyMaterial(geom,
matName
);
Completed in 98 milliseconds