unreal.AnimNextRigVMAssetLibrary¶
- class unreal.AnimNextRigVMAssetLibrary(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
BlueprintFunctionLibraryScript-callable editor API hoisted onto UAnimNextRigVMAsset
C++ Source:
Plugin: UAF
Module: UAFUncookedOnly
File: AnimNextRigVMAssetEditorData.h
- classmethod add_category(asset, category_name, setup_undo_redo=True, print_python_command=True) bool¶
Adds a category to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
category_name (str)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod add_data_interface(asset: AnimNextRigVMAsset, shared_variables: AnimNextSharedVariables, setup_undo_redo: bool = True, print_python_command: bool = True) AnimNextSharedVariablesEntry¶
deprecated: ‘add_data_interface’ was renamed to ‘add_shared_variables’.
- classmethod add_event_graph(asset, name, event_struct, setup_undo_redo=True, print_python_command=True) AnimNextEventGraphEntry¶
Adds an event graph to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
name (Name)
event_struct (ScriptStruct)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod add_function(asset, function_name, mutable, setup_undo_redo=True, print_python_command=True) RigVMLibraryNode¶
Adds a function to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
function_name (Name)
mutable (bool)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
Adds shared variables to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
shared_variables (AnimNextSharedVariables)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
Adds shared variables struct to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
struct (ScriptStruct)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod add_variable(asset, name, value_type, container_type=PropertyBagContainerType.NONE, value_type_object=None, default_value='', setup_undo_redo=True, print_python_command=True) AnimNextVariableEntry¶
Adds a parameter to an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
name (Name)
value_type (PropertyBagPropertyType)
container_type (PropertyBagContainerType)
value_type_object (Object)
default_value (str)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod find_entry(asset, name) AnimNextRigVMAssetEntry¶
Finds an entry in an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
name (Name)
- Return type:
- classmethod remove_all_entries(asset, setup_undo_redo=True, print_python_command=True) bool¶
Removes all entries from an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod remove_entries(asset, entries, setup_undo_redo=True, print_python_command=True) bool¶
Removes multiple entries from an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
entries (Array[AnimNextRigVMAssetEntry])
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- classmethod remove_entry(asset, entry, setup_undo_redo=True, print_python_command=True) bool¶
Removes an entry from an AnimNext asset
- Parameters:
asset (AnimNextRigVMAsset)
entry (AnimNextRigVMAssetEntry)
setup_undo_redo (bool)
print_python_command (bool)
- Return type: