MeshBitmapUVMappingMaterial.js 303 B

123456789101112131415161718
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. */
  4. THREE.MeshBitmapUVMappingMaterial = function ( bitmap ) {
  5. this.bitmap = bitmap;
  6. this.loaded = 0;
  7. this.decalIndex = -1;
  8. this.toString = function () {
  9. return 'THREE.MeshBitmapUVMappingMaterial ( bitmap: ' + this.bitmap + ' )';
  10. };
  11. };