📖 INDEX
LOADING ENGINE...
ImageLoader
THREE.JS REFERENCE // imageloader
A loader for loading an Image.
Syntax
const loader = new THREE.ImageLoader();
loader.load('image.png', function(image) { console.log(image); });Examples
Example 01Basic Usage
const loader = new THREE.ImageLoader();
loader.load('image.png', function(image) { console.log(image); });Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.