本文介绍了对象重叠时的优先级问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有2个对象Object1和Object2
I have 2 object Object1 and Object2
当我使用
transition.to(Object1,{time=1000,x=Object2.x,y = Object2.y})
Object1将在Object2之上。如果我希望Object2高于Object1,该怎么办?
Object1 will be above Object2. If I want Object2 to be above Object1, how can I do?
感谢所有答案!
推荐答案
您可以使用将Object2移到前面。
You can use object:toFront to move Object2 to front.
像这样的事情:
Object2:toFront()
注意:这不仅将Object2移动到Object1的前面,而且将其移动到所有其他对象的前面兄弟姐妹。
如果要对显示进行更多控制,则需要自己构建:)
Note: this not only moves Object2 in front of Object1 but in front of all other siblings.If you want more control about displaying you need to built it yourself :)
这篇关于对象重叠时的优先级问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!