有没有办法在 Irrlicht 中给定一对屏幕坐标来获取 IGUIElement * ?
我有一对屏幕坐标,我需要知道它们是否与任何 GUI 元素重叠。
有没有某种方法可以做到这一点,或者至少找出给定点是否在 GUI 元素的范围内?
如果有某种 isPointInsideAnyGUIElements()
函数,那就更好了。
I have a pair of screen coordinates and I need to know if they overlap any GUI elements.
Is there some way of doing this or at least finding out if a given point is within the bounds of a GUI element?
It would be preferable if there was some sort of isPointInsideAnyGUIElements()
function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
env->getElementFromPoint(position)
Use
env->getElementFromPoint(position)