
Convert CSV (Comma-Separated Values) files into Blueprint Structs at runtime. With a single function call during gameplay, map CSV data directly into a Blueprint Struct array — no manual setup or editor configuration required such as data tables.
The plugin automatically parses the CSV and populates your struct array at runtime. You only need to create a Blueprint Struct where all variables are of type String, and the number of variables in the struct must match the number of columns in the CSV file.
Also supports CSV String Input — simply input CSV data as a string and convert to struct, no file needed. Useful for scenarios like retrieving CSV data from servers during gameplay.