-1
我想光標移動對象的任何其他對象的位置移動到特定位置的光標(鼠標)。
在這段代碼中,蘋果對象正在移動一個遊標,但它並不停止在(八個對象)。在其他情況下,如果我將Apple對象放在除了Eight-Object以外的任何其他位置,它必須返回到開始位置。
//步驟事件
xtarget = obj_eight.x;
ytarget = obj_eight.y;
if(x = xtarget and y = ytarget){
obj_applelemon.x = xtarget;
obj_applelemon.y = ytarget;
}
else{
x = xstart;
y = ystart;
if (mouse_check_button(mb_left)){[enter image description here][1]
x = mouse_x;
y = mouse_y;
}
}