Skip to content

GameObject Get DataTable

Get a DataTable from a DataTableComponent on a GameObject.

Parameters

Parameter Description
Game Object The GameObject to read the DataTableComponent from.
Data Table Component Optional output that stores the DataTableComponent found on the GameObject.
Data Table Optional output that stores the resolved DataTable.
Succeeded True when a DataTableComponent was found and it returned a table.

⚙ Details

This action looks for a DataTableComponent on the target Game Object.

If the component exists, the action can store both the component itself and the table it exposes. The Data Table output can then be passed to other Data Table actions.

If the GameObject is missing, has no DataTableComponent, or the component has no table, the outputs stay empty and Succeeded is false.

Examples

  • Get a DataTable from a manager object, then sort or filter it in later actions.
  • Read a DataTableComponent from a spawned prefab before passing its table into UI logic.