[READ-ONLY] Mirror of https://github.com/flo-bit/threlte-vr-code-editor. proof of concept for a live 3d code editor in vr
code-editor threejs threlte vr
0

Configure Feed

Select the types of activity you want to include in your feed.

Svelte 53.5%
TypeScript 27.2%
JavaScript 13.4%
HTML 3.7%
Other 2.2%
6 1 0

Clone this repository

https://tangled.org/flo-bit.dev/threlte-vr-code-editor https://tangled.org/did:plc:5ajig45czdmfbwvczerr2vjj
git@tangled.org:flo-bit.dev/threlte-vr-code-editor git@tangled.org:did:plc:5ajig45czdmfbwvczerr2vjj

For self-hosted knots, clone URLs may differ based on your setup.



README.md

threlte vr editor#

Proof of concept for a live VR code editor using svelte, three.js, threlte and peer.js.

demo#

https://github.com/flo-bit/threlte-vr-code-editor/assets/45694132/f190bf36-b157-4de5-846f-f9c7a8a9327e

How to use in your own project:#

  1. Make sure you have a threlte project set up (including the extras and xr packages), or create a new one by running:
npm create threlte my-project
cd my-project
  1. Install the following two dependencies:
npm i threlte-uikit peerjs
  1. Copy the editor folder in src/routes from this project into your projects src/routes folder.

  2. Either make sure your main scene is in src/lib/components/Scene.svelte or change the import in src/routes/editor/[id]/vr/EditScene.svelte to point to your main scene.

  3. make sure your vr device and pc are on the same network.

  4. run npm run dev in your project and navigate to your-host-ip/editor/[your random id]/vr on your vr device (replace your random id with your own string). You should see the scene from your main scene file.

  5. Open your-host-ip/editor/[your random id]/pc on your pc (with the same your random id as in step 5). Click connect, choose what you want to share (e.g. your screen or just a window) and click sharne.

  6. You should now see your pc screen in the vr scene. Edit the scene with using your computers mouse and keyboard and see the changes in vr.

Note: some threlte components don't work in vr. Specificially when installing a fresh threlte project, the <ContactShadow> component will cause the scene to not render in vr. You can remove it from your main scene file to fix this.