├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE.txt ├── README.md ├── example ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.html ├── package.json ├── public │ ├── displacement │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 13.jpg │ │ └── 14.jpg │ ├── hero.png │ ├── lambo.glb │ ├── old_depot_2k.hdr │ └── shoe-draco.glb ├── sandbox.config.json ├── src │ ├── App.tsx │ ├── demos │ │ ├── Basic.tsx │ │ ├── Car.tsx │ │ ├── FadeMaterial.tsx │ │ ├── SelfHosted.tsx │ │ ├── Shoe.tsx │ │ ├── index.tsx │ │ └── shaderData.ts │ ├── index.tsx │ ├── renderSettings.ts │ └── styles.tsx ├── vite.config.js └── yarn.lock ├── favicon.svg ├── package.json ├── public └── hero.png ├── src └── index.tsx ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/LICENSE -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/displacement/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/displacement/10.jpg -------------------------------------------------------------------------------- /example/public/displacement/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/displacement/11.jpg -------------------------------------------------------------------------------- /example/public/displacement/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/displacement/13.jpg -------------------------------------------------------------------------------- /example/public/displacement/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/displacement/14.jpg -------------------------------------------------------------------------------- /example/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/hero.png -------------------------------------------------------------------------------- /example/public/lambo.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/lambo.glb -------------------------------------------------------------------------------- /example/public/old_depot_2k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/old_depot_2k.hdr -------------------------------------------------------------------------------- /example/public/shoe-draco.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/public/shoe-draco.glb -------------------------------------------------------------------------------- /example/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/sandbox.config.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/demos/Basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/Basic.tsx -------------------------------------------------------------------------------- /example/src/demos/Car.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/Car.tsx -------------------------------------------------------------------------------- /example/src/demos/FadeMaterial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/FadeMaterial.tsx -------------------------------------------------------------------------------- /example/src/demos/SelfHosted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/SelfHosted.tsx -------------------------------------------------------------------------------- /example/src/demos/Shoe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/Shoe.tsx -------------------------------------------------------------------------------- /example/src/demos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/index.tsx -------------------------------------------------------------------------------- /example/src/demos/shaderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/demos/shaderData.ts -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/renderSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/renderSettings.ts -------------------------------------------------------------------------------- /example/src/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/src/styles.tsx -------------------------------------------------------------------------------- /example/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/vite.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/favicon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/package.json -------------------------------------------------------------------------------- /public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/public/hero.png -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeToy/react-nodetoy/HEAD/yarn.lock --------------------------------------------------------------------------------