I'm trying to get one object to step towards another object regardless of x,y,z locations.
I've checked the help files and this is what I got:
Quote: "dbMoveObject
This command will move the specified 3D object in 3D space. The command uses the current direction of the object and moves it using the specified step value.
Syntax
void dbMoveObject ( int iObject, float fSpeed ) "
Quote: "dbMoveObjectDown
This command will move the object in a down direction relative to its forward facing angle, rather than an absolute world direction.
Syntax
void dbMoveObjectDown ( int iObject, float fValue ) "
Quote: "
dbMoveObjectLeft
This command will move the object in a left direction relative to its forward facing angle, rather than an absolute world direction.
Syntax
void dbMoveObjectLeft ( int iObject, float fValue ) "
And so on....
But there is nothing that will step an object towards another object.
Is there such a function or will I have to craft something myself?