Hi I am new to Construct2D and have been through the Beginners Tutorial: Ghost Shooter.
I experimented with the Event system to move Player on Mouse Click to Position (Mouse.X and Mouse.Y) This immediately places the Player at that position. Is there a way to transition the Player to smoothly move to Mouse Position/Click?
I have also tried Move Forward although this moved to a fixed pixel. Move at Angle requires a degree as a parameter. I have tried using (sqrt((Mouse.X)*(Mouse.X))-((Mouse.Y)*(Mouse.Y))) but this also did not work.