AS3更改现有线条的线条样式
我正在绘制一条从 0,0 到 100,100 的线,
我使用它来修改线型:
draw_line.graphics.lineStyle(1, 0xFF0000);
该线现在的厚度为 1。
无论如何,我可以将线条的粗细更改为 10,但无需重新绘制线条吗?
im drawing a line from 0,0 to 100,100
im using this to modify the linestyle:
draw_line.graphics.lineStyle(1, 0xFF0000);
That line is now of 1 thickness.
Is there anyway i can change the thickness of the line to say 10, but without redrawing the line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,Flash播放器的工作方式是不可能的,你必须重新划线。或者使用某种可以自动为您重绘的库(例如 Flex 4 框架中的 Line 对象)
No, it is not possible with the way the flash player works, you must redraw the line. Or use some kind of library that automatically redraws it for you (for example a Line object in the Flex 4 Framework)
试试这个:
不完全相同,但在某些情况下可能有效。
try this:
Not exactly the same, but could possibly work under certain circumstances.