diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/NewWaterBottle.fbx b/npm/tests/models/fromGltfSamples/WaterBottle/NewWaterBottle.fbx new file mode 100644 index 0000000..a6aee69 --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/NewWaterBottle.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f5082165900ce7c0e53d8638c12aa55ef79d80983b65c024a468d210b4c1ff +size 159532 diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/README.md b/npm/tests/models/fromGltfSamples/WaterBottle/README.md new file mode 100644 index 0000000..c1888fa --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/README.md @@ -0,0 +1,26 @@ +# Water Bottle + +## FBX2glTF Changes + +Imported into Blender, texture files explicitly re-attached to material, +metallic & smoothness separated into distinct textures, smoothness negated +into roughmess, then re-exported as FBX. + +## Original Description + +Authored with PBR metallic/smoothness intended for import into Unity3D. + +Binary FBX contains only the geometry. Textures are in separate files. + +|Name|Map| +|----|---| +|`WaterBottle_BaseColor`|Albedo| +|`WaterBottle_MetalSmooth`|Metallic/Smoothness| +|`WaterBottle_Emissive`|Emissive| +|`WaterBottle_Normal`|Normal| +|`WaterBottle_Occlusion`|Occlusion| + +## License Information + +[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) +To the extent possible under law, Microsoft has waived all copyright and related or neighboring rights to this asset. diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_BaseColor.png b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_BaseColor.png new file mode 100644 index 0000000..4170ac1 --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_BaseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf6b6c6f87085e3d880f6b2d4c0350b2582b1f5a36cafa689cdebdc65720908 +size 1538074 diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Metallic.png b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Metallic.png new file mode 100644 index 0000000..10d531e --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0b4d7567a663838d4e58a9d7ca145b560a19c7ee3b2fbe9cbc446f8a221a5f +size 279918 diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Normal.png b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Normal.png new file mode 100644 index 0000000..60221c8 --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e539a182f42071f47585bf34e4f035fb008a38c3942752e7147e5b281d1e55a +size 2301362 diff --git a/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Roughness.png b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Roughness.png new file mode 100644 index 0000000..26b94d2 --- /dev/null +++ b/npm/tests/models/fromGltfSamples/WaterBottle/WaterBottle_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915d320f5e8660b32e64524cede52ab9591b693c7dc7d7088fc973dae38f0875 +size 1633811 diff --git a/npm/tests/test/fbx2gltf.ts b/npm/tests/test/fbx2gltf.ts index dd9724b..7839734 100644 --- a/npm/tests/test/fbx2gltf.ts +++ b/npm/tests/test/fbx2gltf.ts @@ -15,6 +15,7 @@ const MODELS :Array = [ { path: 'fromFbxSDK/Camera' }, { path: 'fromFbxSDK/Normals' }, { path: 'fromGltfSamples/BoxVertexColors/BoxVertexColors' }, + { path: 'fromGltfSamples/WaterBottle/NewWaterBottle' }, ]; const CONVERSION_TIMEOUT_MS = 50000;