Hi, right now I am saving the the vector (x,y,z) inside a array with enhance_click function,
I want my character to move to the location with the move_to function step by step, so this is my first idea to do this
But seems like using for each loop is not a good idea, my character only move to the location of the last element in the array , I check that it does loop through the array, but seems like it is too quick that all of the previous move_to function got cancelled and only the last one success.
I think I should make a manually loop, but don’t know how to do it, can anyone give me some idea?