diff --git a/.prettierignore b/.prettierignore
index 4ebfbfb1..5ea49dc4 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1 +1,2 @@
-glTF-Sample-Renderer/source/libs
\ No newline at end of file
+glTF-Sample-Renderer/source/libs
+**/*.md
diff --git a/README.md b/README.md
index f1da964c..6eb9c97a 100644
--- a/README.md
+++ b/README.md
@@ -13,14 +13,20 @@ Link to the live [glTF 2.0 Sample Viewer](https://github.khronos.org/glTF-Sample
### glTF
- [x] glTF 2.0
+- [KHR_accessor_float64](https://github.com/KhronosGroup/glTF/pull/2397)
+ - [x] Animations
+ - [x] KHR_animation_pointer
+ - [ ] Mesh Attributes not supported since WebGL2 only supports 32 bit
+ - [ ] Skins not supported since WebGL2 only supports 32 bit
- [x] [KHR_animation_pointer](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_animation_pointer)
- [x] [KHR_draco_mesh_compression](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_draco_mesh_compression)
+- [x] [KHR_interactivity](https://github.com/KhronosGroup/glTF/pull/2293)
- [x] [KHR_lights_punctual](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_lights_punctual)
- [x] [KHR_materials_anisotropy](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_anisotropy)
- [x] [KHR_materials_clearcoat](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_clearcoat)
- [x] [KHR_materials_diffuse_transmission](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/README.md)
- [x] [KHR_materials_dispersion](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_dispersion)
-- [x] [KHR_materials_emissive_strength](https://github.com/KhronosGroup/glTF/tree/KHR_materials_emissive_strength/extensions/2.0/Khronos/KHR_materials_emissive_strength)
+- [x] [KHR_materials_emissive_strength](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_emissive_strength)
- [x] [KHR_materials_ior](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_ior)
- [x] [KHR_materials_iridescence](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_iridescence)
- [x] [KHR_materials_pbrSpecularGlossiness](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness)
@@ -34,6 +40,9 @@ Link to the live [glTF 2.0 Sample Viewer](https://github.khronos.org/glTF-Sample
- [x] For dense volumes using KHR_materials_diffuse_transmission
- [ ] For sparse volumes using KHR_materials_transmission
- [x] [KHR_mesh_quantization](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_mesh_quantization)
+- [x] [KHR_node_hoverability](https://github.com/KhronosGroup/glTF/pull/2426)
+- [x] [KHR_node_selectability](https://github.com/KhronosGroup/glTF/pull/2422)
+- [x] [KHR_node_visibility](https://github.com/KhronosGroup/glTF/pull/2410)
- [x] [KHR_texture_basisu](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_texture_basisu)
- [x] [KHR_texture_transform](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_texture_transform)
- [x] [KHR_xmp_json_ld](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_xmp_json_ld)
diff --git a/eslint.config.js b/eslint.config.js
index bfff2ca8..06476c19 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -23,7 +23,12 @@ export default [
semi: "warn",
"no-extra-semi": "warn",
"no-undef": "warn",
- "no-unused-vars": "warn",
+ "no-unused-vars": [
+ "warn",
+ {
+ argsIgnorePattern: "^_"
+ }
+ ],
"no-empty": "warn",
"no-redeclare": "warn",
"no-prototype-builtins": "warn",
diff --git a/glTF-Sample-Renderer b/glTF-Sample-Renderer
index 4deade77..7e5457e0 160000
--- a/glTF-Sample-Renderer
+++ b/glTF-Sample-Renderer
@@ -1 +1 @@
-Subproject commit 4deade77ce977dcd1e7918c949c2289e80eac365
+Subproject commit 7e5457e0578c907ba8d63a8bd4a843f7b8594be5
diff --git a/index.html b/index.html
index 601d503e..9255da59 100644
--- a/index.html
+++ b/index.html
@@ -47,7 +47,7 @@