如何用加速度计擦除线条?

时间:2012-03-19 17:54:08

标签: android actionscript-3 accelerometer

我需要一个简短的代码来擦除在Android设备上绘制的线条。这是生成我的行的代码:

this.graphics.lineTo(event.stageX, event.stageY);

我似乎无法通过加速度计检测到的移动来获取正确的代码来擦除此行。我想把它像一个'蚀刻草图'来擦掉线条。

有没有人可以帮助我。这对我来说都是新的。

1 个答案:

答案 0 :(得分:3)

尝试:

this.graphics.clear();

这将删除this.graphics创建的所有内容(大概是你想要的)。