Knowledge base
Search Blueprint patterns
Searching…
Knowledge base
SETUP: 1. Create struct FItemData: {Name(Name), Damage(float), Icon(Texture2D), Description(Text)}. 2. Create DataTable with row type FItemData. Add rows (Sword, Bow, Staff...).
READ: GetDataTableRow(Table=DT_Items, RowName='Sword') → Row Found exec → BreakFItemData(OutRow) → use Damage, Name, etc.
DYNAMIC READ (from variable): SetVariable(CurrentItemName='Bow') → GetDataTableRow(RowName=CurrentItemName) → same flow.
LIST ALL: GetDataTableRowNames → ForEachLoop → GetDataTableRow per name → display.
Key: GetDataTableRow exec outs are 'Row Found' and 'Row Not Found' (NOT 'then').