Delay in C++

it’s not so true. this is a native C++ code:

 #include <thread>   

 std::this_thread::sleep_for(std::chrono::milliseconds(420)); //c++11

this however should not be used in UE4, because it will freeze the whole thread. UE4 has it’s own timers mechanism.