如何用颜色填充 box2d-qml 多边形?

发布于 2024-11-27 20:29:19 字数 480 浏览 1 评论 0原文

我让 box2d 和 qml 一起工作得很好。 我正在生成这样的多边形

Polygon{
    vertices: [
                Qt.point(6, 22),
                Qt.point(10, 64),
                Qt.point(46, 89),
                Qt.point(82, 64),
                Qt.point(84, 21),
                Qt.point(45, 1)
            ]

}

,但无法添加

Polygon{
        ...
        ...
     **color: red**   
    }

它不允许在“颜色”下添加红线。

我应该做一些 javascript 吸引吗?

谢谢

I have box2d and qml working together nice.
I am generating a polygon like this

Polygon{
    vertices: [
                Qt.point(6, 22),
                Qt.point(10, 64),
                Qt.point(46, 89),
                Qt.point(82, 64),
                Qt.point(84, 21),
                Qt.point(45, 1)
            ]

}

but can not add

Polygon{
        ...
        ...
     **color: red**   
    }

it does not allow with a red line under "color".

should i do some javascript attraction?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如梦初醒的夏天 2024-12-04 20:29:19

你必须使用十六进制颜色。
或使用 Common.b2Color 对象。
您可以在此处查看文档 http://www.box2dflash.org/docs/2.1a/reference /

color : #FFFFFF;


or b2Color(rr:Number, gg:Number, bb:Number);

you have to use hexadecimal colors.
or using Common.b2Color object.
you can see documentation here http://www.box2dflash.org/docs/2.1a/reference/

color : #FFFFFF;


or b2Color(rr:Number, gg:Number, bb:Number);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文