We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eab5fa commit 8c96a03Copy full SHA for 8c96a03
extras/gltf.js
@@ -167,12 +167,14 @@
167
};
168
/** @private */
169
GltfState._makeShape = function(mesh) {
170
- return new H3DU.Shape(mesh).setMaterialParams({
+ var sh = new H3DU.Shape(mesh);
171
+ sh.getMaterial().setParams({
172
"albedo":[0, 0, 0],
173
"emission":[0.5, 0.5, 0.5],
174
"metalness":0.0,
175
"roughness":1.0
176
});
177
+ return sh;
178
179
180
GltfState.prototype.preparePrograms = function() {
@@ -794,7 +796,7 @@
794
796
if(typeof shader === "undefined" || shader === null) {
795
797
return null;
798
}
- shape.setMaterialParams({"shader":shader});
799
+ shape.getMaterial().setParams({"shader":shader});
800
801
this.materials[prim.material] = shape.getMaterial();
802
0 commit comments