unreal.UpgradeNiagaraScriptResults¶
- class unreal.UpgradeNiagaraScriptResults(outer: Optional[Object] = None, name: Union[Name, str] = 'None')¶
Bases:
ObjectWrapper class for passing results back from the version upgrade python script.
C++ Source:
Plugin: Niagara
Module: NiagaraEditor
File: UpgradeNiagaraScriptResults.h
Editor Properties: (see get_editor_property/set_editor_property)
cancelled_by_python_error(bool): [Read-Write] Cancelled by Python Error: Whether the converter process was cancelled due to an unrecoverable error in the python script process.new_inputs(Array[NiagaraPythonScriptModuleInput]): [Read-Write] New Inputsold_inputs(Array[NiagaraPythonScriptModuleInput]): [Read-Write] Old Inputs
- property cancelled_by_python_error: bool¶
[Read-Write] Cancelled by Python Error: Whether the converter process was cancelled due to an unrecoverable error in the python script process.
- Type:
(bool)
- get_old_input(input_name) NiagaraPythonScriptModuleInput¶
Get Old Input
- Parameters:
input_name (str) –
- Return type:
- property new_inputs: Array[NiagaraPythonScriptModuleInput]¶
[Read-Write] New Inputs
- Type:
- property old_inputs: Array[NiagaraPythonScriptModuleInput]¶
[Read-Write] Old Inputs
- Type:
- set_color_input(input_name, value) None¶
Set Color Input
- Parameters:
input_name (str) –
value (LinearColor) –