mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2025-02-07 23:42:12 -05:00
Updated to version 2.1.0
This commit is contained in:
parent
365efa10fd
commit
1bebb590ef
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
@ -1 +0,0 @@
|
|||||||
* @lilleyse
|
|
@ -1,8 +1,13 @@
|
|||||||
Change Log
|
Change Log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
### 2.1.0 ???
|
### 2.1.0 2017-12-28
|
||||||
|
|
||||||
|
* Fixed loading faces that contain less than 3 vertices. [#120](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/120)
|
||||||
|
* Attempt to load missing materials and textures from within the same directory as the obj. [#117](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/117)
|
||||||
|
* Fixed loading mtllib paths that contain spaces. [#116](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/116)
|
||||||
|
* Fixed checking for transparency when the diffuse texture is used in another texture slot. [#115](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/115)
|
||||||
|
* Fixed parsing mtl textures that contain texture map options. [#109](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/109)
|
||||||
* Added back support for the `CONSTANT` technique when a model uses the `KHR_materials_common` extension and has no normals. [#108](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/108)
|
* Added back support for the `CONSTANT` technique when a model uses the `KHR_materials_common` extension and has no normals. [#108](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/108)
|
||||||
* Improved handling of materials with alpha. If the alpha value is 0.0 it is now treated as 1.0. [#107](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/107)
|
* Improved handling of materials with alpha. If the alpha value is 0.0 it is now treated as 1.0. [#107](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/107)
|
||||||
|
|
||||||
|
@ -9,6 +9,8 @@ module.exports = outsideDirectory;
|
|||||||
* @param {String} file Path to the file.
|
* @param {String} file Path to the file.
|
||||||
* @param {String} directory Path to the directory.
|
* @param {String} directory Path to the directory.
|
||||||
* @returns {Boolean} Whether the file is outside of the directory.
|
* @returns {Boolean} Whether the file is outside of the directory.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
function outsideDirectory(file, directory) {
|
function outsideDirectory(file, directory) {
|
||||||
return (path.relative(directory, file).indexOf('..') === 0);
|
return (path.relative(directory, file).indexOf('..') === 0);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obj2gltf",
|
"name": "obj2gltf",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"description": "Convert OBJ model format to glTF",
|
"description": "Convert OBJ model format to glTF",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user