Browse Source

Update README.md

Vicente Penades 6 years ago
parent
commit
4907a11bd9
1 changed files with 5 additions and 4 deletions
  1. 5 4
      README.md

+ 5 - 4
README.md

@@ -8,9 +8,9 @@ Prerelease Nuget packages available [here.](https://www.nuget.org/packages/Sharp
 
 ### Examples
 
-- [Load and save glTF and GLB files.](https://github.com/vpenades/SharpGLTF/blob/master/tests/SharpGLTF.Tests/Schema2/LoadAndSave/LoadSampleTests.cs#L32)
-- [Create a simple triangle.](https://github.com/vpenades/SharpGLTF/blob/master/tests/SharpGLTF.Tests/Schema2/Authoring/CreateModelTests.cs#L97)
-- [Create a textured triangle.](https://github.com/vpenades/SharpGLTF/blob/master/tests/SharpGLTF.Tests/Schema2/Authoring/CreateModelTests.cs#L138)
+- [Load and save glTF and GLB files.](https://github.com/vpenades/SharpGLTF/blob/3dfe005ba7210c8327867127681a2b39aa567412/tests/SharpGLTF.Tests/Schema2/LoadAndSave/LoadSampleTests.cs#L32)
+- [Create a simple triangle.](https://github.com/vpenades/SharpGLTF/blob/3dfe005ba7210c8327867127681a2b39aa567412/tests/SharpGLTF.Tests/Schema2/Authoring/BasicSceneCreationTests.cs#L95)
+- [Create a textured triangle.](https://github.com/vpenades/SharpGLTF/blob/3dfe005ba7210c8327867127681a2b39aa567412/tests/SharpGLTF.Tests/Schema2/Authoring/BasicSceneCreationTests.cs#L139)
 
 ### Features
 
@@ -42,6 +42,7 @@ Prerelease Nuget packages available [here.](https://www.nuget.org/packages/Sharp
 - [x] [KHR_materials_pbrSpecularGlossiness](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness)
 - [x] [KHR_materials_unlit](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_unlit)
 - [x] [KHR_lights_punctual](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_lights_punctual)
+- [x] [KHR_texture_transform](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_transform) (WIP)
 
 ### Unsupported extensions
 
@@ -49,7 +50,7 @@ Prerelease Nuget packages available [here.](https://www.nuget.org/packages/Sharp
   - Depends on [Google's Draco Project](https://github.com/google/draco) which is C++ ; *Help Needed*
 
 - [ ] [KHR_techniques_webgl](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_techniques_webgl)
-- [ ] [KHR_texture_transform](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_transform)
+
 - [ ] [MSFT_texture_dds](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_texture_dds)
 - [ ] [MSFT_lod](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_lod)
   - When this extension is used, the model's visual tree needs to be abstracted, which requires an extensive API rework, or a full API layer.