├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── netlify.toml ├── package.json ├── public └── index.html ├── src ├── Axes.tsx ├── Button.tsx ├── Crate.tsx ├── DefaultHandControllers.tsx ├── Grab.tsx ├── HandModel.ts ├── Level.tsx ├── Roboto.json ├── Text.tsx ├── index.tsx ├── poses │ ├── default.ts │ ├── idle.ts │ └── pinch.ts ├── react-app-env.d.ts ├── store.tsx └── styles.css ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v12.18.3 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/public/index.html -------------------------------------------------------------------------------- /src/Axes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Axes.tsx -------------------------------------------------------------------------------- /src/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Button.tsx -------------------------------------------------------------------------------- /src/Crate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Crate.tsx -------------------------------------------------------------------------------- /src/DefaultHandControllers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/DefaultHandControllers.tsx -------------------------------------------------------------------------------- /src/Grab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Grab.tsx -------------------------------------------------------------------------------- /src/HandModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/HandModel.ts -------------------------------------------------------------------------------- /src/Level.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Level.tsx -------------------------------------------------------------------------------- /src/Roboto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Roboto.json -------------------------------------------------------------------------------- /src/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/Text.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/poses/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/poses/default.ts -------------------------------------------------------------------------------- /src/poses/idle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/poses/idle.ts -------------------------------------------------------------------------------- /src/poses/pinch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/poses/pinch.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/store.tsx -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driescroons/react-xr-default-hands/HEAD/yarn.lock --------------------------------------------------------------------------------