Package Exports
- @polygonjs/plugin-mediapipe-facemesh
- @polygonjs/plugin-mediapipe-facemesh/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@polygonjs/plugin-mediapipe-facemesh) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Polygonjs Mediapipe Facemesh Plugin
This adds a Mediapipe Facemesh SOP nodes to the Polygonjs webgl engine.
Install
Import the plugin:
yarn add @polygonjs/plugin-mediapipe-facemesh
And register the plugin in the function configurePolygonjs in the file PolyConfig.js so that the facemesh nodes can be accessible in both the editor and your exported scene:
import {polyPluginMediapipeFacemesh} from '@polygonjs/plugin-mediapipe-facemesh/dist/src/index';
export function configurePolygonjs(poly) {
poly.registerPlugin(polyPluginMediapipeFacemesh);
}