How to set Actor's Tag in C++ on Runtime?

AActor* p; (it is your actor object)
p->Tags.Add(FName(“123”));

4 Likes