如何用颜色填充 box2d-qml 多边形?
我让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须使用十六进制颜色。
或使用 Common.b2Color 对象。
您可以在此处查看文档 http://www.box2dflash.org/docs/2.1a/reference /
you have to use hexadecimal colors.
or using Common.b2Color object.
you can see documentation here http://www.box2dflash.org/docs/2.1a/reference/