mirror of
https://github.com/troisjs/trois.git
synced 2024-11-23 20:02:32 +08:00
update readme
This commit is contained in:
parent
44d54b2f71
commit
b7ae3b84d1
10
README.md
10
README.md
@ -7,16 +7,16 @@ I wanted to try to write a lib similar to [react-three-fiber](https://github.com
|
||||
I first made a simple *Proof of Concept*, take a look at [Test.vue](/src/components/Test.vue) :
|
||||
|
||||
```html
|
||||
<Renderer ref="renderer" :animate="anim">
|
||||
<Renderer ref="renderer">
|
||||
<PerspectiveCamera :position="{ z: 100 }"></PerspectiveCamera>
|
||||
|
||||
<PhongMaterial name="mat1" color="#ff0000"></PhongMaterial>
|
||||
<LambertMaterial name="mat2" color="#0000ff"></LambertMaterial>
|
||||
<PhongMaterial name="material1" color="#ff0000"></PhongMaterial>
|
||||
<LambertMaterial name="material2" color="#0000ff"></LambertMaterial>
|
||||
|
||||
<Scene>
|
||||
<PointLight :position="{ x: 0, y: 50, z: 50 }"></PointLight>
|
||||
<Box ref="box" :size="10" :rotation="{ x: 0.5, y: 0.25 }" material="mat1"></Box>
|
||||
<Sphere ref="sphere" :radius="10" :position="{ x: 50 }" material="mat2"></Sphere>
|
||||
<Box ref="box" :size="10" material="material1"></Box>
|
||||
<Sphere ref="sphere" :radius="10" :position="{ x: 50 }" material="material2"></Sphere>
|
||||
</Scene>
|
||||
</Renderer>
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user