Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
Former-commit-id: 8ee76ff
  • Loading branch information
deltakosh committed Oct 10, 2013
1 parent ce3f1bb commit 39bc82d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
8 changes: 6 additions & 2 deletions Babylon/Rendering/babylon.renderingManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@
this._scene.getEngine().clear(0, false, true);
}

if (renderingGroup && !renderingGroup.render(customRenderFunction, index == 0 ? beforeTransparents : null)) {
this._renderingGroups.splice(index, 1);
if (renderingGroup) {
if (!renderingGroup.render(customRenderFunction, index == 0 ? beforeTransparents : null)) {
this._renderingGroups.splice(index, 1);
}
} else if (beforeTransparents && index == 0) {
beforeTransparents();
}

if (renderParticles) {
Expand Down
2 changes: 1 addition & 1 deletion Babylon/Tools/babylon.sceneLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -635,4 +635,4 @@
}, progressCallBack, database);
}
};
})();
})();
4 changes: 2 additions & 2 deletions babylon.1.5.0.js → babylon.1.5.1.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions what's new.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changes list
============
- 1.5.1:
- **Updates**
- Massive update of typescript files ([jroblak](http://www.github.com/jroblak))
- **Bugfixes**
- Fixing an issue with ```SceneLoader.ImportMesh``` ([nicolas-obre](http://www.github.com/nicolas-obre))
- Fixing an issue with sprites rendering when no mesh is present ([deltakosh](http://www.github.com/deltakosh))
- 1.5.0:
- **Major updates**
- New ```DeviceOrientationCamera``` that supports W3C DeviceOrientations events ([deltakosh](http://www.github.com/deltakosh))
Expand Down

0 comments on commit 39bc82d

Please sign in to comment.