unreal.UAFLayeringUtils¶
- class unreal.UAFLayeringUtils(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
BlueprintFunctionLibraryUAFLayering Utils
C++ Source:
Plugin: UAFLayering
Module: UAFLayering
File: UAFLayeringUtils.h
- classmethod disable_layer(uaf_component, layer_name, layer_stack_path) None¶
Disables the specified layer by name in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_name (Name)
layer_stack_path (UAFLayerStack)
- classmethod disable_layer_by_index(uaf_component, layer_index, layer_stack_path) None¶
Disables the specified layer by index in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_index (int32)
layer_stack_path (UAFLayerStack)
- classmethod enable_layer(uaf_component, layer_name, layer_stack_path) None¶
Enables the specified layer by name in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_name (Name)
layer_stack_path (UAFLayerStack)
- classmethod enable_layer_by_index(uaf_component, layer_index, layer_stack_path) None¶
Enables the specified layer by index in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_index (int32)
layer_stack_path (UAFLayerStack)
- classmethod set_layer_weight(uaf_component, layer_name, layer_stack_path, weight) None¶
Sets the weight of the specified layer by name in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_name (Name)
layer_stack_path (UAFLayerStack)
weight (float)
- classmethod set_layer_weight_by_index(uaf_component, layer_index, layer_stack_path, weight) None¶
Sets the weight of the specified layer by index in the specified Layer Stack
- Parameters:
uaf_component (UAFComponent)
layer_index (int32)
layer_stack_path (UAFLayerStack)
weight (float)