Notch 不会在 matter.js 中显示

问题描述 投票:0回答:0

我需要在 matter.js 中制作这个形状:

这是我尝试过的(我从 figma 中提取了点并将它们插入到 matter.js 中:

const logoBottom = Matter.Bodies.fromVertices(
    150,
    150,
    [
        [
            Matter.Vector.create(13.06, 22.53),
            Matter.Vector.create(66.94, 22.53),
            Matter.Vector.create(58.24, 37.54),
            Matter.Vector.create(39.03, 37.54),
            Matter.Vector.create(48.64, 54.1),
            Matter.Vector.create(40, 69),
        ],
    ],
    { isStatic: true }
);

然而,侧面的凹口没有显示,我不知道为什么。 感谢您的回答! 问候

javascript frontend 2d physics matter.js
© www.soinside.com 2019 - 2024. All rights reserved.