Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@polygonjs/plugin-mediapipe-facemesh

polygonjs30MIT1.1.257TypeScript support: included

Mediapipe Facemesh plugin for the 3D engine https://polygonjs.com

3D, javascript, webgl, procedural, node-based, facemesh, lighting

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);
}