Hi guys, I'm trying to draw a polygon/line from the coordinates of an svg path.
I thought to use the path2d method, as it works correctly on native canvas, but I cannot make it work with pixi and couldn't fine anyone talking about it around.
Something like this, but it's not working:
let trackPath = new Path2D("M10 10 h 80 v 80 h -80 Z")
graphic = new PIXI.Graphics()
graphic.drawPolygon(trackPath)
app.stage.addChild(graphic)
Anyone?