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
- void ABA_DataLoader::OnReload()
- {
- this->ConnectionsDT->ForeachRow<FConnectionInfo>(TEXT("DT_Connections::LoadTable")
- , [this](const FName& Key, const FConnectionInfo& Value) mutable
- {
- ConnectionsMap.Add(Key, Value);
- // set the ActiveConnection
- if (Value.IsActiveConnection)
- this->ActiveConnection = Value;
- }
- );
- }
Add Comment
Please, Sign In to add comment