1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-23 20:02:32 +08:00
ThreeJS + VueJS 3 + ViteJS
Go to file
2020-09-15 10:12:01 +02:00
docs move github page folder 2020-09-15 10:12:01 +02:00
public init 2020-09-14 16:57:11 +02:00
src wip 2020-09-15 10:07:57 +02:00
.eslintrc.js init 2020-09-14 16:57:11 +02:00
.gitignore move github page folder 2020-09-15 10:12:01 +02:00
index.html wip 2020-09-15 10:07:57 +02:00
package.json wip 2020-09-15 10:07:57 +02:00
README.md Update README.md 2020-09-14 17:10:01 +02:00

VueJS 3 + ViteJS + ThreeJS

I wanted to try to write a lib similar to react-three-fiber but for VueJS.

PoC

I first made a simple Proof of Concept, take a look at Test.vue :

  <Renderer>
    <PerspectiveCamera :position="{ z: 100 }"></PerspectiveCamera>

    <PhongMaterial name="material1" color="#ff0000"></PhongMaterial>
    <LambertMaterial name="material2" color="#0000ff"></LambertMaterial>

    <Scene>
      <PointLight :position="{ y: 50, z: 50 }"></PointLight>
      <Box ref="box" :size="10" material="material1"></Box>
      <Sphere ref="sphere" :radius="10" :position="{ x: 50 }" material="material2"></Sphere>
    </Scene>
  </Renderer>

Test

git clone https://github.com/troisjs/trois
cd trois
yarn
yarn dev