From c9125c53b28c4637d70ee84c227a0ebedd438d32 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Fri, 6 Aug 2021 16:55:56 +0200 Subject: [PATCH] Typo fix. --- source/threejs/threeconverter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/threejs/threeconverter.js b/source/threejs/threeconverter.js index 7dc66a1..79f837b 100644 --- a/source/threejs/threeconverter.js +++ b/source/threejs/threeconverter.js @@ -67,7 +67,7 @@ OV.ConvertModelToThreeMeshes = function (model, params, output, callbacks) specularColor.setRGB (0.0, 0.0, 0.0); } threeMaterial.specular = specularColor; - threeMaterial.shininess = material.shininess * 100.0, + threeMaterial.shininess = material.shininess * 100.0; LoadTexture (threeMaterial, material.specularMap, (threeTexture) => { threeMaterial.specularMap = threeTexture; callbacks.onTextureLoaded ();