Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Developer Bastian © 2024
- // License Creative Commons DEED 4.0 (https://creativecommons.org/licenses/by-sa/4.0/deed.en)
- // Tutorial video at https://youtu.be/le4VYlJXASg
- // Part of an Unreal Basics video tutorial series at: https://bit.ly/Unreal_Basics_en
- // Example for finding a row in the DataTable - ONLY possible for row name
- FString rowName = "NoAuth";
- FString Context = "DataTable Tests";
- FConnectionInfo *conn = this->ConnectionsDT->FindRow<FConnectionInfo>(FName(*rowName), Context, false);
- if (conn)
- {
- UE_LOG(LogTemp, Log, TEXT("BA_DataLoader: DataRow '%s' has url '%s'"), *rowName, *conn->ConnectionUrl);
- }
Add Comment
Please, Sign In to add comment