Skip to content

Commit

Permalink
package/version
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridherbst committed Apr 19, 2023
1 parent 3704b3e commit 36a4a6b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
8 changes: 8 additions & 0 deletions UnityGLTF/Assets/UnityGLTF/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [2.0.0-exp.2] - 2023-04-20
- fix: fresh project reimport was breaking ImportPlugin API
- fix: editor import in 2021.x, added ShaderGraph dependency now
- fix: blendshape frame weight was incorrectly calculated on export
- fix: player compilation
- change: bump Unity dependency to 2020.3

## [2.0.0-exp] - 2023-04-18
- add: ImportPlugin API with ``GltfImportPlugin`` and ``GltfImportPluginContext`` for receiving callbacks during import

Expand Down
2 changes: 2 additions & 0 deletions UnityGLTF/Assets/UnityGLTF/Runtime/Scripts/GLTFSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,9 @@ public static GLTFSettings GetOrCreateSettings()
settings = ScriptableObject.CreateInstance<GLTFSettings>();
#endif
}
#if UNITY_EDITOR
RegisterPlugins(settings);
#endif
cachedSettings = settings;
return settings;
}
Expand Down
6 changes: 3 additions & 3 deletions UnityGLTF/Assets/UnityGLTF/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "org.khronos.unitygltf",
"displayName": "UnityGLTF",
"version": "2.0.0-exp.1",
"unity": "2019.4",
"version": "2.0.0-exp.2",
"unity": "2020.3",
"description": "Unity3D library for importing and exporting GLTF 2.0 assets. https://github.com/KhronosGroup/UnityGLTF",
"keywords": [
"gltf",
Expand All @@ -23,4 +23,4 @@
"com.unity.modules.imageconversion": "1.0.0",
"com.unity.shadergraph": "10.0.0"
}
}
}

0 comments on commit 36a4a6b

Please sign in to comment.