兄弟,在這裡啵兒快設計你的圖形

寶直接幫你算出 path !

寬度設定(橫):高度設定(直):
親愛的 TwilightWars 玩家,
Stage 就是你各位任務的舞台大小,
謝謝你各位 TwilightWars 玩家

當前圖形的頂點陣列(即時更新)

1 const vertices = [];

那個... 我是超級菜鳥,
我 copy 陣列之後應該怎麼弄出圖形來?

不論你是不是親愛的 TwilightWars 玩家,你都會在你的 Pixi App 中建立至少一個 Graphic

基本上看起來像這樣:
1 let graphics = new PIXI.Graphics();

然後你要把它 "畫" 出來:
1 2 3 graphics.drawPolygon(vertices); // 這個 vertices 就是你 copy 的陣列 graphics.beginFill(0xff0000); // 上個色吧 graphics.endFill();

最後將它添加到你的 Stage 中:
1 app.stage.addChild(graphics);