├── .github └── workflows │ └── npm-publish.yml ├── OutlinePass.js ├── README.md ├── examples ├── app.bundle.js ├── index.html ├── index.js ├── outline1.jpg └── outline2.jpg └── package.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /OutlinePass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/OutlinePass.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/README.md -------------------------------------------------------------------------------- /examples/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/examples/app.bundle.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/examples/index.js -------------------------------------------------------------------------------- /examples/outline1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/examples/outline1.jpg -------------------------------------------------------------------------------- /examples/outline2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/examples/outline2.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scqilin/three-OutlinePass/HEAD/package.json --------------------------------------------------------------------------------