The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

Hi,
I've been searching for a good way to move my npc (it's a fish) to a position Vector3() with collisions detection.

First, I tried to use Tween :

public Vector3 Destination;
public float Time = 5.0f;


tween = GetNode<Tween>("Tween");

tween.InterpolateProperty(this,"translation",Translation,Destination,Time);

This solution was very accurate and easy to use but collision detection doesn't work: my fish pass through the ground, and IsOnWall() function return nothing.

The second solution was with MoveAndSlide():

public override void _PhysicsProcess(float delta)
{
    Vector3 velocityAngle = Destination-Translation;
    Vector3 movement = MoveAndSlide(velocityAngle.Normalized()*speed);
}

It was a good solution, I've got my collisions but I don't really know how to stop the movement precisely except with:

 if(Translation.DistanceTo(Destination)<0.1f){
  }

And lastely, I tried with LinearInterpolate() function:

Translation = _beginPosition.LinearInterpolate(Destination,_currentTranslationTime/Time);

The result was the same as with Tween.

I think I missed something, I thought it was an easy thing to move object linearly between two positions.

Thanks for your help.

in Engine by (21 points)

Hi,
If you modify position directly (with linear interpolation or twin) you wont get colision stop the movement. You'll have to implement your own mechanism. I think MoveAndSlide is the way to go. If you want to instead stop on any collision withous sliding, you could use MoveAndCollide instead.

Note that in your code you assigned the return value of MoveAndSlide to a Vector3 called "movement". But the result from that function is the linear velocity vector. I think it should be more like:

public override void _PhysicsProcess(float delta)
{
    Vector3 velocity = (Destination-Translation).normalized()*speed;
    velocity = MoveAndSlide(velocity);
}

It wont affect to the code you have right now, because you are updating the velocity before move and slide and not doing anything after move and slide. But that way you can check the resultant velocity for other calculations afterwards. You could even check if the velocity changed, that means a collision was present.

Hi,
Thanks for your advice. I changed my code to use MoveAndSlide like you say:

public override void _PhysicsProcess(float delta)
{
    if(isMoving) 
     {
        Vector3 velocity = (Destination-Translation).Normalized()*Speed;
        velocity = MoveAndSlide(velocity);
        if(Translation.DistanceTo(Destination)<=0.05f){
            isMoving=false;
            Translation = Destination;
            SetDestinationRoutine();

        }
    }
    if(IsOnWall()) SetDestinationRoutine();

}

I use IsOnWall() to know when my character collide with floor, and it seems to work perfectly.
There is another issue with Translation.DistanceTo(destination)<=minDistancewhen I increase the speed: my character goes to fast, pass the destination point, try to go back to destination point, and oscilate between two positions.
The solution was to increase the minDistance value.
Is there a better solution (more accurate) to stop my character at a position with MoveAndSlide? Thanks.

Please log in or register to answer this question.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.