Explorar el Código

Fix bug in optimization that caused tiles to not be rendered (fixes #1204).

The optimizations introduced in 05dae19b28
contained a bug, which caused a regression.
pull/1205/head
Matthew Petroff hace 9 meses
padre
commit
8f7a888c3a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/js/libpannellum.js

+ 1
- 1
src/js/libpannellum.js Ver fichero

@@ -1074,7 +1074,7 @@ function Renderer(container, context) {
for (var i = 0; i < program.currentNodes.length; i++) {
if (node_paths[program.currentNodes[i].parentPath] === undefined)
node_paths[program.currentNodes[i].parentPath] = 0
node_paths[program.currentNodes[i].parentPath] += !(program.currentNodes[i].textureLoaded > 1); // !(undefined > 1) != (undefined <= 1)
node_paths[program.currentNodes[i].parentPath] += program.currentNodes[i].textureLoaded > 1;
}
// Draw tiles
for (var i = 0; i < program.currentNodes.length; i++) {


Cargando…
Cancelar
Guardar