Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设计了一张图片并将其设置为窗口的背景。我想要的是图片的位充当按钮,例如,如果我使用桌面的屏幕截图作为窗口的背景图像,我想让开始按钮像按钮一样,我是否必须绘制定义鼠标点击具有特定动作的周边的区域?
好吧,过剩只是为了绘图,而不是为了创建按钮或菜单。最好的解决方案是将您想要拥有按钮的区域保留在某个变量中,并测试鼠标单击是否在这些区域之一内。
矩形示例:
if(mouse_x>vertex_x[0] && mouse_x<vertex_x[1] && mouse_y>vertex_y[0] && mouse_y<vertex_y[1])