demo url
bug demo url
/**
* three.js docs url https://threejs.org/docs/index.html?q=Texture#api/en/textures/Texture
* Texture.needsUpdate = true;
* // Filter
* Texture.minFilter = THREE.LinearMipmapLinearFilter;
* Texture.magFilter = THREE.LinearMipmapLinearFilter;
*
* // Wrap
* Texture.wrapS = THREE.RepeatWrapping;
* Texture.wrapT = THREE.RepeatWrapping;
*
* Texture.flipY = false;
* Texture.generateMipmaps = true;
*
* babylon docs url https://doc.babylonjs.com/typedoc/classes/BABYLON.Texture
* Unable to find attribute
* minFilterămagFilterăwrapSăwrapTăflipYăgenerateMipmaps
*
* url https://www.shadertoy.com/view/XlsXzN
* Resulting in the inability to achieve the same effect
*
*/