我有按钮我想在应用程序加载时禁用它的点击事件,然后在一段时间后启用点击事件如何做到这一点
下面是我的动作脚本代码
NResponder.addNative(controls.addCurrentBag, MouseEvent.MOUSE_OVER, onOverCurrentBag);
NResponder.addNative(controls.addCurrentBag, MouseEvent.MOUSE_OUT, onOutCurrentBag);
_currentBagClicked = NResponder.addNative(controls.addCurrentBag, MouseEvent.CLICK, onClickedCurrentBag);
_currentBagClicked.paused = true;