three
Version:
JavaScript 3D library
55 lines (30 loc) • 1.01 kB
JavaScript
import { Font } from '../extras/core/Font.js';
import { FileLoader } from './FileLoader.js';
import { Loader } from './Loader.js';
function FontLoader( manager ) {
Loader.call( this, manager );
}
FontLoader.prototype = Object.assign( Object.create( Loader.prototype ), {
constructor: FontLoader,
load: function ( url, onLoad, onProgress, onError ) {
const scope = this;
const loader = new FileLoader( this.manager );
loader.setPath( this.path );
loader.setRequestHeader( this.requestHeader );
loader.load( url, function ( text ) {
let json;
try {
json = JSON.parse( text );
} catch ( e ) {
console.warn( 'THREE.FontLoader: typeface.js support is being deprecated. Use typeface.json instead.' );
json = JSON.parse( text.substring( 65, text.length - 2 ) );
}
const font = scope.parse( json );
if ( onLoad ) onLoad( font );
}, onProgress, onError );
},
parse: function ( json ) {
return new Font( json );
}
} );
export { FontLoader };