Marker tracking plugin for the 3D engine https://polygonjs.com
npm install @polygonjs/plugin-marker-trackingThis adds several nodes to work with Marker Tracking with the Polygonjs webgl design tool.
Import the plugin:
yarn add @polygonjs/plugin-marker-tracking
And register the plugin in the function configurePolygonjs in the file PolyConfig.js so that the mapbox nodes can be accessible in both the editor and your exported scene:
``js
import {polyPluginMarkerTracking} from '@polygonjs/plugin-marker-tracking/dist/src/index';
export function configurePolygonjs(poly) {
poly.registerPlugin(polyPluginMarkerTracking);
}
``
This plugin is open-source and MIT, but it depends on AR-js, which itself depends on artoolkit5-js, which under LGPLv3 license. See artoolkit5-js license.