├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example ├── assets │ ├── dungeon.obj │ └── nav_test.obj └── index.html ├── function.js ├── lib ├── BufferGeometryUtils.js └── OBJExporter.js ├── now.json ├── package.json ├── public ├── aframe-inspector-plugin-recast.js └── index.html ├── scripts └── docs.js └── src ├── components └── nav-debug-pointer.js ├── plugin.html ├── plugin.js ├── plugin.scss ├── recast-config.js ├── spinner.scss └── three-geometry-reducer.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [donmccurdy] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/assets/tmp 3 | 4 | .vercel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/README.md -------------------------------------------------------------------------------- /example/assets/dungeon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/example/assets/dungeon.obj -------------------------------------------------------------------------------- /example/assets/nav_test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/example/assets/nav_test.obj -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/example/index.html -------------------------------------------------------------------------------- /function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/function.js -------------------------------------------------------------------------------- /lib/BufferGeometryUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/lib/BufferGeometryUtils.js -------------------------------------------------------------------------------- /lib/OBJExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/lib/OBJExporter.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/package.json -------------------------------------------------------------------------------- /public/aframe-inspector-plugin-recast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/public/aframe-inspector-plugin-recast.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/scripts/docs.js -------------------------------------------------------------------------------- /src/components/nav-debug-pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/components/nav-debug-pointer.js -------------------------------------------------------------------------------- /src/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/plugin.html -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/plugin.js -------------------------------------------------------------------------------- /src/plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/plugin.scss -------------------------------------------------------------------------------- /src/recast-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/recast-config.js -------------------------------------------------------------------------------- /src/spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/spinner.scss -------------------------------------------------------------------------------- /src/three-geometry-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donmccurdy/aframe-inspector-plugin-recast/HEAD/src/three-geometry-reducer.js --------------------------------------------------------------------------------