* Starting the materials refactoring (testing branching too)

This commit is contained in:
Mr.doob
2010-11-12 04:37:36 +00:00
parent b978e9e592
commit facf7ff039
7 changed files with 39 additions and 58 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* @author mr.doob / http://mrdoob.com/
*/
THREE.ParticleBitmapMaterial = function ( bitmap ) {
this.bitmap = bitmap;
this.offset = new THREE.Vector2();
this.toString = function () {
return 'THREE.ParticleBitmapMaterial ( bitmap: ' + this.bitmap + ' )';
};
};