Skip to content

Commit 8c96a03

Browse files
committed
edit gltf.js to accommodate removal of setMaterialParams method
1 parent 0eab5fa commit 8c96a03

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

extras/gltf.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,14 @@
167167
};
168168
/** @private */
169169
GltfState._makeShape = function(mesh) {
170-
return new H3DU.Shape(mesh).setMaterialParams({
170+
var sh = new H3DU.Shape(mesh);
171+
sh.getMaterial().setParams({
171172
"albedo":[0, 0, 0],
172173
"emission":[0.5, 0.5, 0.5],
173174
"metalness":0.0,
174175
"roughness":1.0
175176
});
177+
return sh;
176178
};
177179
/** @private */
178180
GltfState.prototype.preparePrograms = function() {
@@ -794,7 +796,7 @@
794796
if(typeof shader === "undefined" || shader === null) {
795797
return null;
796798
}
797-
shape.setMaterialParams({"shader":shader});
799+
shape.getMaterial().setParams({"shader":shader});
798800
}
799801
this.materials[prim.material] = shape.getMaterial();
800802
}

0 commit comments

Comments
 (0)