Property Type, Name, Function Name 확인 및 실행
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 for (TFieldIterator It(ClassInfo1); It; ++It) { //Property 이름, 종류 출력 AB_LOG(Warning, TEXT("Field : %s, Type : %s"), *It->GetName(), *It->GetClass()->GetName()); UStrProperty* StrProp = FindField(ClassInfo1, *It->GetName()); if (StrProp) { //Property에 할당된 값 출력 AB_LOG(Warning, TEXT("Value = %s"), *StrProp->GetPropertyValue_InContain..
2019. 1. 1.