Page 1 of 1

ToAnteriorPostion

PostPosted: Tue Jan 16, 2018 5:49 pm
by SarmadRabbani
Hey Guys!!!

There's a funtion ToAnteriorPostion, What is is???. I mean what is it used for ? :?:

Re: ToAnteriorPostion

PostPosted: Tue Jan 16, 2018 7:01 pm
by Kcee
From my research, I think it stops an actor from moving at a particular velocity. Search within the forums to know more.

Re: ToAnteriorPostion

PostPosted: Fri Jan 19, 2018 8:18 am
by SarmadRabbani
Kcee wrote:From my research, I think it stops an actor from moving at a particular velocity. Search within the forums to know more.


Sorry but I didn't get the reliable concept.

Re: ToAnteriorPostion

PostPosted: Fri Jan 19, 2018 8:48 pm
by Kcee
The function is rarely used, what do you want to use it for anyway?

Re: ToAnteriorPostion

PostPosted: Fri Jan 19, 2018 11:54 pm
by juansimat
I think your question may be too broad.

The obvious answer would be ToAnteriorPosition is the equivalent of:
Code: Select all
someActor.x = someActor.xprevious;
someActor.y = someActor.yprevious;


But your are probably asking examples of usage.

If you asked what is sin(x) used, well, it's used for retrieving the sine of the x. The examples of when you'll benefit from this operation are up to your imagination (and most common, to your needs).

In programming, sometimes you can achieve same results with different code and functions. One example of ToAnteriorPosition could be, to simulate collision effect, instead of using the PhysicalResponse method.