Nav apraksta

tangning a7ab5f7345 1aa 5 mēneši atpakaļ
public a7ab5f7345 1aa 5 mēneši atpakaļ
src a7ab5f7345 1aa 5 mēneši atpakaļ
.browserslistrc a7ab5f7345 1aa 5 mēneši atpakaļ
.eslintrc.js a7ab5f7345 1aa 5 mēneši atpakaļ
.gitignore a7ab5f7345 1aa 5 mēneši atpakaļ
LICENSE.txt a7ab5f7345 1aa 5 mēneši atpakaļ
README.md 64a6ce61fe first commit 5 mēneši atpakaļ
babel.config.js a7ab5f7345 1aa 5 mēneši atpakaļ
firebase.json a7ab5f7345 1aa 5 mēneši atpakaļ
package-lock.json a7ab5f7345 1aa 5 mēneši atpakaļ
package.json a7ab5f7345 1aa 5 mēneši atpakaļ
tsconfig.json a7ab5f7345 1aa 5 mēneši atpakaļ
vue.config.js a7ab5f7345 1aa 5 mēneši atpakaļ
yarn.lock a7ab5f7345 1aa 5 mēneši atpakaļ

README.md

Three USDZ Loader

This is a demo project showing how to load a USDZ file with ThreeJS (Pixar Universal Scene Description) in a 100% frontend based application. For more information about the USDZ loader used in this demo please take a look at the loader package three-usdz-loader.

Features

  • 100% frontend (no backend or GLTF converter of some sort)
  • Uses ThreeJS + Vue + Vuetify + Typescript

Demo

This repository build is published to usdz-viewer.net

How to use

Clone the repository

git clone https://github.com/ponahoum/usdz-web-viewer.git
cd .\usdz-web-viewer\

Install Vue Cli and the dependencies

npm install -g @vue/cli
npm install

Copy the WebAssembly dependencies to your public folder

npm run copydeps

Run the development server

npm run serve

How to publish

Build the app

npm run build

Make sure you enabled the headers required to use SharedArrayBuffer

headers: {
"Cross-Origin-Embedder-Policy": "require-corp",
"Cross-Origin-Opener-Policy": "same-origin",
},