Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

ue4 iterate tmap c++

TMap<int32, AActor*> exampleIntegerToActorMap;  
for (const TPair<int32, AActor*>& pair : exampleIntegerToActorMap)
{      
	pair.Key;
  	pair.Value;  
} 
Source by answers.unrealengine.com #
 
PREVIOUS NEXT
Tagged: #iterate #tmap
ADD COMMENT
Topic
Name
7+3 =