Browse Source

Update README.md

Vicente Penades 6 years ago
parent
commit
000f7d986d
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/SharpGLTF.Core/Runtime/README.md

+ 2 - 3
src/SharpGLTF.Core/Runtime/README.md

@@ -1,11 +1,10 @@
 # SharpGLTF.Runtime
 # SharpGLTF.Runtime
 
 
-This namespace contains some utility classes to help into rendering glTF models with
-client graphics engines typically using hardware resources.
+This namespace contains some utility classes to help rendering glTF models with
+client graphics engines which typically use GPU accelerated resources.
 
 
 The process is this; first of all we load a glTF model:
 The process is this; first of all we load a glTF model:
 
 
-Loading a glTF document:
 ```c#
 ```c#
 var model = SharpGLTF.Schema2.ModelRoot.Load("model.gltf");
 var model = SharpGLTF.Schema2.ModelRoot.Load("model.gltf");
 ```
 ```