Lua 関数の Export は、Lua テーブルをXML形式でエクスポートします。
この関数は Import と対をなすものです。
関連する関数として、オブジェクト用の Export があります。
この関数は何も返しません。
ビルドの詳細テーブルをエクスポートするには、以下のようなコードでプラグインを作成します。
local function main() local build = BuildDetails() --BuildDetails() creates a table with information about the software build. local exportPath = GetPath(Enums.PathType.Library) .. "/BuildDetails.xml" --The path and filename is stored in a variable. Export(exportPath, build) --The actual export function. Printf("The build details is exported to: " .. exportPath) --Print some feedback. end return main