threejs-syntax-loaders
Installation
SKILL.md
threejs-syntax-loaders
Quick Reference
Loader Architecture
All Three.js loaders extend the Loader base class and share two loading patterns:
// Callback style
loader.load(url, onLoad, onProgress, onError);
// Promise style (preferred)
const result = await loader.loadAsync(url, onProgress);
Import Paths
| Loader | Import |
Related skills