diff --git a/README.md b/README.md index dc5c5ca..9783e97 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ cgltf also supports some glTF extensions: - KHR_draco_mesh_compression (requires a library like [Google's Draco](https://github.com/google/draco) for decompression though) - KHR_lights_punctual - KHR_materials_clearcoat +- KHR_materials_emissive_strength - KHR_materials_ior - KHR_materials_pbrSpecularGlossiness - KHR_materials_sheen @@ -111,9 +112,8 @@ cgltf also supports some glTF extensions: - KHR_materials_unlit - KHR_materials_variants - KHR_materials_volume -- KHR_texture_transform - KHR_texture_basisu (requires a library like [Binomial Basisu](https://github.com/BinomialLLC/basis_universal) for transcoding to native compressed texture) -- KHR_materials_emissive_strength +- KHR_texture_transform cgltf does **not** yet support unlisted extensions. However, unlisted extensions can be accessed via "extensions" member on objects. diff --git a/cgltf.h b/cgltf.h index 8b386b0..ee1ac1f 100644 --- a/cgltf.h +++ b/cgltf.h @@ -1,7 +1,7 @@ /** * cgltf - a single-file glTF 2.0 parser written in C99. * - * Version: 1.11 + * Version: 1.12 * * Website: https://github.com/jkuhlmann/cgltf * diff --git a/cgltf_write.h b/cgltf_write.h index 8307332..430f693 100644 --- a/cgltf_write.h +++ b/cgltf_write.h @@ -1,7 +1,7 @@ /** * cgltf_write - a single-file glTF 2.0 writer written in C99. * - * Version: 1.11 + * Version: 1.12 * * Website: https://github.com/jkuhlmann/cgltf *