/*-----ѓ̏--------------------*/
for(i=0;i<10;i+=1){
	with(Bullet[i]){
		if(attachObj != noone){
			speed = 0;
			gravity = 0;
			with(attachObj){
				if(other.adjustDirection){
					other.image_angle += preAngle - image_angle;
					other.x = x+lengthdir_x(other.attachDistance,other.attachDirection)*0.3;
					other.y = y+lengthdir_y(other.attachDistance,other.attachDirection);
					with(other){ Fluid(x,y,COLOR_BLOOD,1,0,5,0,360,0.25); }
				}else{
					other.x = x+16+lengthdir_x(other.attachDistance,other.attachDirection)*0.3;
					other.y = y+16+lengthdir_y(other.attachDistance,other.attachDirection);
				}
			}
		}
	}
}