tableau icon indicating copy to clipboard operation
tableau copied to clipboard

DataTable: support UE DataTable: `ue-csv` and `ue-json`

Open wenchy opened this issue 3 years ago • 0 comments

References

Design

Extend Mode in proto/tableau/protobuf/tableau.proto:

// Sheet mode.
enum Mode {
  ...
  // UE DataTable references:
  //  - https://dev.epicgames.com/documentation/en-us/unreal-engine/data-driven-gameplay-elements-in-unreal-engine
  //  - https://dev.epicgames.com/documentation/en-us/unreal-engine/BlueprintAPI/EditorScripting/DataTable
  MODE_UE_CSV = 10;   // TODO: CSV format of UE DataTable.
  MODE_UE_JSON = 11;  // TODO: JSON format of UE DataTable.
}

For example, metasheet @TABLEAU in workbook:

Sheet Mode
Skill MODE_UE_CSV
Buff MODE_UE_JSON

wenchy avatar Jan 15 '23 06:01 wenchy