mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
477 B
TypeScript
14 lines
477 B
TypeScript
// https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/FBXLoader.js
|
|
|
|
import { LoadingManager } from "./three-core";
|
|
import {Group} from "./three-core";
|
|
|
|
export class FBXLoader {
|
|
|
|
constructor(manager?: LoadingManager);
|
|
manager: LoadingManager;
|
|
|
|
load(url: string, onLoad: (group: Group) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): void;
|
|
parse(FBXText: string, resourceDirectory: string) : Group;
|
|
|
|
} |