diff --git a/changelog.html b/changelog.html index bf9cdd06..bb959513 100644 --- a/changelog.html +++ b/changelog.html @@ -2,6 +2,8 @@
- Enhanced 3D model (creyc)
- More predefined options for channel map
+ - Display motor/servo signal value inside the bars
+ - Bugfixes
diff --git a/tabs/setup.js b/tabs/setup.js index 03e70e49..dd0a7ce1 100644 --- a/tabs/setup.js +++ b/tabs/setup.js @@ -327,6 +327,11 @@ TABS.setup.initialize3D = function (compatibility) { // load the model including materials loader = new THREE.JSONLoader(); loader.load('./resources/models/quad_x.js', function (geometry, materials) { + // enable overdraw in case we use canvas renderer + for (var i = 0; i < materials.length; i++) { + materials[i].overdraw = true; + } + model = new THREE.Mesh(geometry, new THREE.MeshFaceMaterial(materials)); model.scale.set(10, 10, 10);