Pular para o conteúdo principal

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 MaxAutoRisk exigem "_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 argumento dryRun. smoke = coberto por edit.self_test.

io.clear_pipeline_status (risco 2, altera, smoke)​

Clears only the retained pipeline status, leaving its ordered import steps unchanged.

ArgumentoTipoDescrição
pipelinestringobrigató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.

ArgumentoTipoDescrição
folderstringobrigatório. Content folder for the pipeline DataAsset.
namestringobrigatório. Bare pipeline asset name.
stepsarray of UeaIeoPipelineStepOrdered 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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Existing pipeline DataAsset path.
folderstringobrigatório. Destination content folder beginning with /Game.
namestringobrigató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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Pipeline DataAsset path.
allowOverwritebooleanRequired 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.

ArgumentoTipoDescrição
pipelinestringobrigató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.

ArgumentoTipoDescrição
pipelinestringobrigató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.

ArgumentoTipoDescrição
pipelinestringobrigató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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Pipeline DataAsset path.
checkExistingFilesbooleanCheck 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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Import/export pipeline DataAsset path.
checkSourceFilesbooleanCheck 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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Import/export pipeline DataAsset path.
savebooleanSave 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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Pipeline DataAsset path.
stepsarray of UeaIeoExportStepobrigató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.

ArgumentoTipoDescrição
pipelinestringobrigatório. Import/export pipeline DataAsset path.
stepsarray of UeaIeoPipelineStepobrigatório. Complete replacement ordered step list.

Retorna: pipeline, steps.