"Move at angle" moves the sprite instantly (teleports to new position).
If you want to use this action to gradually move your sprite, you need something like this:
On every tick -> Sprite Move 100*dt pixels at angle 45
This will move the sprite at speed 100px per second. Or simply use Bullet behavior.