-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Is now able to properly handle multiple requests for initTaskType. If one is ongoing the other requests are not answered until the first one is complete. This prevents that parsing starts in any sequentially triggered loaders before init is really complete. - Introduced execution loop OBJLoader2Parser - Fix: Was not properly reset when reused in Worker. General: - Updated typescript definitions
- Loading branch information
Showing
11 changed files
with
282 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,2 @@ | ||
import { | ||
Material | ||
} from '../../../../../src/Three'; | ||
|
||
export class MaterialHandler { | ||
|
||
constructor(); | ||
logging: { | ||
enabled: boolean; | ||
debug: boolean; | ||
}; | ||
callbacks: { | ||
onLoadMaterials: Function; | ||
}; | ||
materials: object; | ||
|
||
createDefaultMaterials( overrideExisting: boolean ): void; | ||
addMaterials( materials: object, overrideExisting: boolean, newMaterials?: object ): object; | ||
addPayloadMaterials( materialPayload: object ): object; | ||
setLogging( enabled: boolean, debug: boolean ): void; | ||
getMaterials(): object; | ||
getMaterial( materialName: string ): Material; | ||
getMaterialsJSON(): object; | ||
clearMaterials(): void; | ||
|
||
} |
Oops, something went wrong.