Alright so in my code I have it setup so that the player can hit a button and it will move a bomb I already have off screen too the player’s location. The problem is that because I’m setting it too the player’s location it follows the player. I just want it too spawn at the player’s location and stay there.
my code for moving the bomb is
if(bombdrop)
{
bomb1_mc.x = player_mc.y;
bomb1_mc.y = player_mc.x;
}