Allow renderCallback to cancel rendering
If you work with WebVR, you may want to cancel out normal rendering in favour of stereoscopic rendering.
Now you can, by making your renderCallback return false.
Example:
function onRender() {
if(renderVR) {
vrEffect.render(World.getScene(), World.getCamera());
return false;
}
}