所以我做了一个游戏。有一个人和一把剑。你可以拖动剑。我有个主意:
如果我拖着剑,我把它移到男人身上,那么男人就会把它捡起来。如果我不把它移到人身上,那么剑就会瞬移回第一个位置。
我该如何编程?我试过这个,但不起作用:
on (press) {
startDrag(this);
}
on (release) {
stopDrag();
if (_root.vcam.inventory.inventory_items.sword1._y == 90 - 270 & _root.vcam.inventory.inventory_items.sword1._x == -430 - -350)
{
_root.man.sword._visible = true;
}
else
{
_root.vcam.inventory.inventory_items.sword1._x = 0;
_root.vcam.inventory.inventory_items.sword1._y = 0;
}
}