planetary.js
planetary.js copied to clipboard
missing plugins?
Not sure if plugins aren't exported or I've missed a setup step (have scoured docs). I can get a basic planet on the screen but I get an error when trying to use a plugin like in the docs.

I just have this import
import * as Planetaryjs from "planetary.js";
and then applying the plugin like so:
const planet = Planetaryjs.planet();
const canvas = document.getElementById("globe");
planet.loadPlugin(Planetaryjs.plugins.autocenter({ extraHeight: -120 }));