mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-28 14:26:05 +10:00
42 lines
1015 B
JavaScript
42 lines
1015 B
JavaScript
/**
|
|
* @author mr.doob / http://mrdoob.com/
|
|
*
|
|
* parameters = {
|
|
* color: <hex>,
|
|
* map: new THREE.UVMap( <Image> ),
|
|
* opacity: <float>,
|
|
* blending: THREE.NormalBlending
|
|
* }
|
|
*/
|
|
|
|
THREE.ParticleBasicMaterial = function ( parameters ) {
|
|
|
|
this.color = new THREE.Color( 0xff0000 );
|
|
this.map = null;
|
|
this.opacity = 1;
|
|
this.blending = THREE.NormalBlending;
|
|
|
|
this.offset = new THREE.Vector2(); // TODO: expose to parameters
|
|
|
|
if ( parameters ) {
|
|
|
|
if ( parameters.color !== undefined ) this.color.setHex( parameters.color );
|
|
if ( parameters.map !== undefined ) this.map = parameters.map;
|
|
if ( parameters.opacity !== undefined ) this.opacity = parameters.opacity;
|
|
if ( parameters.blending !== undefined ) this.blending = parameters.blending;
|
|
|
|
}
|
|
|
|
this.toString = function () {
|
|
|
|
return 'THREE.ParticleBasicMaterial (<br/>' +
|
|
'color: ' + this.color + '<br/>' +
|
|
'map: ' + this.map + '<br/>' +
|
|
'opacity: ' + this.opacity + '<br/>' +
|
|
'blending: ' + this.blending + '<br/>' +
|
|
')';
|
|
|
|
};
|
|
|
|
};
|