Hey, There is a blueprint node Input Touch Which has a On Moved Event, is There any event like that that tells that the touch has moved or not in C++?

In C++ it is using the input event IE_Repeat. So you would do
InputComponent->BindTouch(IE_Repeat, this, &ThisClass::TouchMovedFunction);
              
              
              2 Likes
            
            
          Thanks!