Hello !
I'm using in my project a sprite that has both pathfinding and bullet behaviors.
I guessed that making them work together would not be simple, but it seems that I was underestimating the problem.
So how do you make pathfinding and bullet behavior work together ?
I tried to disable bullet speed while the sprite is using the pathfinding, but it does not seems to work with bounces (the sprite still bounces on contact with solid even though the bullet behavior is disabled).
I tried using bullet speed to 0, too, but that makes the sprite vanish !
I could make bullet and pathfinding work together, but then it causes some issues, like the sprite losing its path, and turning in circle past some speed.
In this file you can see part of the problem: sprite vanish when colliding while moving along its path and colliding with bounce and speed = 0 (although bullet is disabled), and sprite 1 still bouncing on sprite 2 if you disable "set bullet speed to 0" in sheet 1, although bullet is disabled, too.
(I'm not alowed to publish links yet so
nacht. free.f r/public/speed0Bounce.capx
just remove spaces)
So my question is not how to workaround this case in the capx, but it is how do YOU make bullet and pathfinding work together with the same sprite ?