Global
- remove some useless console.log - remove useless files
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
import {
|
||||
Mesh,
|
||||
InstancedPointsNodeMaterial
|
||||
} from '/static/javascript/three/build/three.module.js';
|
||||
import InstancedPointsGeometry from '../geometries/InstancedPointsGeometry.js';
|
||||
|
||||
class InstancedPoints extends Mesh {
|
||||
|
||||
constructor( geometry = new InstancedPointsGeometry(), material = new InstancedPointsNodeMaterial() ) {
|
||||
|
||||
super( geometry, material );
|
||||
|
||||
this.isInstancedPoints = true;
|
||||
|
||||
this.type = 'InstancedPoints';
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default InstancedPoints;
|
Reference in New Issue
Block a user