I'm currently attempting to recreate the Three.js panorama dualfisheye example using Three.js r71.
I have to stick with r71 because I plan to use this code in Autodesk Forge Viewer, which is built on Three.js r71.
While I've made some progress, I encountered an error message in the browser console that says:
RENDER WARNING: there is no texture bound to unit 0
// JavaScript code for creating a panorama
var camera, scene, renderer;
// Initialize function
function init() {
// Initialization code here
}
// Animation function
function animate() {
// Animation code here
}
init(); // Call the initialization function
animate(); // Start the animation
// CSS code snippet
body {
background-color: #000000;
margin: 0px;
overflow: hidden;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/71/three.js"></script>
<div id="container"></div>
Appreciate your time and assistance!