如何在 Actionscript 3.0 中捕捉线条样式?
海,我是动作脚本的新手。
我正在尝试在 ActionScript 3 中制作一个画笔工具,孩子们可以使用画笔在圆圈内绘制颜色。我已经使用线条样式实现了这一点。现在我希望画笔在孩子即将完成时(比如当他们完成绘画的 95% 时)捕捉颜色。我怎么知道孩子在圆圈上画了多少?
谢谢
Hai, i am a newbie to actionscript.
i am trying to make a brush tool in actionscript 3, where kids can paint colors inside a circle using the brush. i have achieved this using linestyle. Now i want the brush to snap the color when the kid is about to complete(say when they are 95% to complete the painting). How do i know how much the kid has painted on the circle?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以:
如何计算像素:
在填充形状上运行此命令以获得要比较的总像素数。
当像素数达到95%后,您可以清除孩子的绘图并显示填充的形状。
You can:
How to count pixels:
Run this on filled shape to get total pixel count to compare with.
After pixelCount reaches 95%, you can clear kid's drawing and show filled shape.