Kit io
12 ferramentas. Gerado a partir do código-fonte do plugin; não edite manualmente.
As descrições das ferramentas e dos argumentos são exibidas em inglês porque espelham o schema das ferramentas (o mesmo texto que o agente recebe em
tools/list).
Ferramentas
Legenda. risco 0 = somente leitura, 1 = operação inofensiva do editor, 2 = altera asset, 3 = apaga/substitui asset, 4 = projeto/config/build, 5 = potencialmente destrutivo (chamadas acima de
MaxAutoRiskexigem"_confirm": true). altera = roda numa transação (edit.undo reverte). requer PIE / requer mundo = recusado sem sessão PIE / sem nível aberto. requer plugin = indisponível quando o plugin está desativado. dryRun = aceita o argumentodryRun. smoke = coberto poredit.self_test.
io.clear_pipeline_status (risco 2, altera, smoke)
Clears only the retained pipeline status, leaving its ordered import steps unchanged.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
Retorna: pipeline, steps.
io.create_pipeline (risco 2, altera, smoke)
Creates a pipeline DataAsset that stores ordered source-file import steps.
| Argumento | Tipo | Descrição |
|---|---|---|
folder | string | obrigatório. Content folder for the pipeline DataAsset. |
name | string | obrigatório. Bare pipeline asset name. |
steps | array of UeaIeoPipelineStep | Ordered source-file steps; empty creates a reusable empty pipeline. |
Retorna: pipeline, steps.
io.duplicate_pipeline (risco 2, altera, smoke)
Duplicates a persistent pipeline definition and retained history into a new DataAsset.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Existing pipeline DataAsset path. |
folder | string | obrigatório. Destination content folder beginning with /Game. |
name | string | obrigatório. Bare destination asset name. |
Retorna: pipeline, steps.
io.export_pipeline (risco 3, altera)
Exports each preflighted asset through Unreal's public exporter task API.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Pipeline DataAsset path. |
allowOverwrite | boolean | Required explicit consent before replacing any existing output file. Padrão false. |
Retorna: pipeline, steps, ready, succeededCount, failedCount.
io.get_pipeline (risco 0, smoke)
Returns a pipeline's stored steps and durable last-run summary.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
Retorna: pipeline, steps.
io.get_pipeline_history (risco 0, smoke)
Returns durable import and export run history retained by the pipeline asset.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
Retorna: pipeline, importErrors.
io.get_pipeline_status (risco 0, smoke)
Returns the status preserved by the most recent completed or blocked pipeline run.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
Retorna: pipeline, steps.
io.preflight_export_pipeline (risco 0, smoke)
Validates export assets, output folders, and overwrite permission without writing files.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Pipeline DataAsset path. |
checkExistingFiles | boolean | Check whether a destination output already exists. Padrão true. |
Retorna: pipeline, steps, ready, succeededCount, failedCount.
io.preflight_pipeline (risco 0, smoke)
Validates sources, destinations, factories, duplicate outputs and replacement permission without importing.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
checkSourceFiles | boolean | Check each external source file before reporting readiness. Padrão true. |
Retorna: pipeline, steps, ready, errorCount, warningCount.
io.run_pipeline (risco 3, altera)
Runs a fully preflighted pipeline and persists its per-step outcome. Not smoke-tested: it requires real external source files.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
save | boolean | Save successfully imported assets to disk after each importer finishes. Padrão false. |
Retorna: pipeline, steps, succeededCount, failedCount.
io.set_export_steps (risco 2, altera, smoke)
Replaces the pipeline's explicit asset-to-file export manifest without exporting files.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Pipeline DataAsset path. |
steps | array of UeaIeoExportStep | obrigatório. Complete replacement export manifest. |
Retorna: pipeline, steps.
io.set_pipeline_steps (risco 2, altera, smoke)
Replaces every stored step after validating the safe pipeline shape.
| Argumento | Tipo | Descrição |
|---|---|---|
pipeline | string | obrigatório. Import/export pipeline DataAsset path. |
steps | array of UeaIeoPipelineStep | obrigatório. Complete replacement ordered step list. |
Retorna: pipeline, steps.