我做了一个AR应用程序来检测打印的标记和&在上面播放视频。 我想在纸上打印一个按钮,当它被手指挡住时触发一个事件。
图片链接: http://tinypic.com/view.php?pic=23le2h2&s=7
应用程序开发是使用简单的打印纸和AR进行AR测验。仅限网络摄像头。通过隐藏标记触发按钮事件的最佳解决方案是什么?
操作系统:Windows PC
框架: FLARManager
答案 0 :(得分:0)
您只需要聆听何时以及哪些标记组合处于活动状态,并在以下情况下进行判断:
private function onEnterFrame (evt:Event) :void
{
if (this.activeMarker_1 && this.activeMarker_2)
{
trace("no button is being pressed");
}
else if (this.activeMarker_1 && this.activeMarker_2 == null)
{
trace("answer: no");
}
else if (this.activeMarker_1 == null && this.activeMarker_2)
{
trace("answer: yes");
}
else if (this.activeMarker_1 == null && this.activeMarker_2 == null)
{
trace("both buttons are being pressed");
}
}