📖 INDEX
LOADING ENGINE...
PointsMaterial
THREE.JS REFERENCE // pointsmaterial
The default material used by Points.
Syntax
const material = new THREE.PointsMaterial({ color: 0x888888, size: 0.1 });Examples
Example 01Basic Usage
const material = new THREE.PointsMaterial({ color: 0x888888, size: 0.1 });Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.