Android AndEngine 按钮保持突出显示
我正在使用 andengine
并且我有一些精灵在按下时会改变颜色。
在 Action_Down
上,我使用 changeColor
方法,在 ActionUp
上,我将其恢复正常。
这样做的问题是,当我按下按钮/精灵时,它会改变颜色,当我将手指移到对象之外并将其拿起时,它不再进入 Action_Up
情况。
有没有简单的方法可以解决这个问题?
I am using andengine
and I have some sprites that change color when pressed.
On Action_Down
I use the changeColor
method and on ActionUp
I turn it back to normal.
The problem with this is that when I press my button/sprite it changes color and when I move my finger outside the object and take it up it no longer goes into the Action_Up
case.
Is there an easy way to fix this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Action_Move 案例并测试手指何时离开按钮并执行与 Action_Up 中相同的操作
use the Action_Move case and test for when the finger moves off the button and do the same action you do in Action_Up