I'm trying to calculate the distance between 2 actors in a simulated 3D environment. An enemy starship comes at the player's ship (located at the bottom of the screen) from the "horizon" (located roughly at 1/4 of the screen height from the top) towards the player.
I´m moving the enemy starship slower at the horizon and speeding it as it moves to the bottom of the screen using:
- Code: Select all
MoveTo("Enemy", 0, 0, (Enemy.y / 600) * 2, "Player", "");
and this works well to create the illusion of depth, but the distance is ovbiously also decreased at the speed of movement.
I tried using the distance function, but the problem is that it calculates the distance linearly and thus the enemy starship does not "cover more space" (per pixel moved on the y axis) at the top of the screen than what it does almost at the bottom.
I'm stuck at this point

Thanks in advance