We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8739c04 commit aba54efCopy full SHA for aba54ef
docs/DataTable_API.md
@@ -1,5 +1,18 @@
1
# The DataTable API
2
3
+DataTables allows you to store (as an asset) a "list" (or better a dictionary) of structures.
4
+
5
+A DataTable is assigned to a UStruct, and then it can be filled with rows.
6
7
+Each row has a unique name and a value. That value is a structure of the DataTable-associated UStruct.
8
9
+So if you have a 'FWeaponStruct', you can build a DataTable full of 'FWeaponStruct's (one per-row)
10
11
+You can create a DataTable (in addition to creating it directly from the content browser) directly from python:
12
13
+```python
14
+```
15
16
data_table_add_row(row_name, struct)
17
18
data_table_remove_row(row_name)
0 commit comments