diff --git a/README.md b/README.md index 934354e5..b60672f9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ Examples and documentation for TroisJS -Main repo : https://github.com/troisjs/trois +Main repo: https://github.com/troisjs/trois diff --git a/src/guide/cdn.md b/src/guide/cdn.md index 8b4cdcf7..fd5ef5d9 100644 --- a/src/guide/cdn.md +++ b/src/guide/cdn.md @@ -2,9 +2,9 @@ You can import TroisJS as a CDN package (take a look at these [codepen examples](https://codepen.io/collection/AxoWoz)). -::: warning ThreeJS/VueJS versions (TroisJS 0.3.3) -If you need to import things from ThreeJS/VueJS, you should use : -- ThreeJS **0.134.0** (https://cdn.skypack.dev/three@0.134.0/build/three.module.js) +::: warning three.js/VueJS versions (TroisJS 0.3.3) +If you need to import things from three.js/VueJS, you should use : +- three.js **0.134.0** (https://cdn.skypack.dev/three@0.134.0/build/three.module.js) - VueJS **3.2.20** (https://unpkg.com/vue@3.2.20/dist/vue.esm-browser.prod.js) ::: diff --git a/src/guide/core/camera.md b/src/guide/core/camera.md index 9376b1ae..3120ea85 100644 --- a/src/guide/core/camera.md +++ b/src/guide/core/camera.md @@ -51,15 +51,15 @@ See [PerspectiveCamera.ts](https://github.com/troisjs/trois/blob/master/src/core -### Access ThreeJS camera +### Access three.js camera -You should set a *ref* on the camera : +You should set a *ref* on the camera: ```html ``` -You can then access ThreeJS camera in your component script : +You can then access three.js camera in your component script: ```js const camera = this.$refs.camera.camera; diff --git a/src/guide/core/index.md b/src/guide/core/index.md index a2ac8009..195dd4fb 100644 --- a/src/guide/core/index.md +++ b/src/guide/core/index.md @@ -1,6 +1,6 @@ # Usage -TroisJS needs a [`Renderer`](renderer), a [`Camera`](camera) and a [`Scene`](scene) : +TroisJS needs a [`Renderer`](renderer), a [`Camera`](camera) and a [`Scene`](scene): ```vue