webgl-obj-loader
Advanced tools
Comparing version 2.0.1 to 2.0.2
import Mesh from "./mesh"; | ||
export interface DownloadModelsOptions { | ||
obj: string; | ||
mtl: boolean | string; | ||
downloadMtlTextures: boolean; | ||
mtlTextureRoot: string; | ||
name: string; | ||
indicesPerMaterial: boolean; | ||
calcTangentsAndBitangents: boolean; | ||
mtl?: boolean | string; | ||
downloadMtlTextures?: boolean; | ||
mtlTextureRoot?: string; | ||
name?: string; | ||
indicesPerMaterial?: boolean; | ||
calcTangentsAndBitangents?: boolean; | ||
} | ||
@@ -11,0 +11,0 @@ export declare type MeshMap = { |
{ | ||
"name": "webgl-obj-loader", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "A simple OBJ model loader to help facilitate the learning of WebGL", | ||
@@ -5,0 +5,0 @@ "main": "dist/webgl-obj-loader.min.js", |
@@ -67,8 +67,8 @@ import Mesh from "./mesh"; | ||
obj: string; | ||
mtl: boolean | string; | ||
downloadMtlTextures: boolean; | ||
mtlTextureRoot: string; | ||
name: string; | ||
indicesPerMaterial: boolean; | ||
calcTangentsAndBitangents: boolean; | ||
mtl?: boolean | string; | ||
downloadMtlTextures?: boolean; | ||
mtlTextureRoot?: string; | ||
name?: string; | ||
indicesPerMaterial?: boolean; | ||
calcTangentsAndBitangents?: boolean; | ||
} | ||
@@ -75,0 +75,0 @@ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
500578
20