this is something i really want help with cause i don’t really understand any of the ‘Array’ functions. any way, i have made homing missiles in flash, but i want to make them ‘pick’ their targets acording to distance from the missile to the target. here is what im currently using:
function findTarget(obj) {
for (i=0; i<Targets.length; i++) {
xdif = obj._x-Targets*._x;
ydif = obj._y-Targets*._y;
targetDis* = Math.sqrt(xdifxdif+ydifydif);
}
targetDis.sort();
findRot(obj, Targets[eval(targetDis[0])]._x, Targets[eval(targetDis[0])]._y);
}
this function would be called from inside the missile like this: findTarget(this)
what exactaly does sort() and what should i use for my homing missiles?
thanx Heaps
Dom