unreal.AnimNextRigVMAsset¶
- class unreal.AnimNextRigVMAsset(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
RigVMHostBase class for all AnimNext assets that can host RigVM logic
C++ Source:
Plugin: UAF
Module: UAF
File: AnimNextRigVMAsset.h
Editor Properties: (see get_editor_property/set_editor_property)
asset_user_data(Array[AssetUserData]): [Read-Write] Array of user data stored with the assetasset_user_data_editor_only(Array[AssetUserData]): [Read-Write] Array of user data stored with the asseteditor_data(Object): [Read-Only]
- add_category(category_name, setup_undo_redo=True, print_python_command=True) bool¶
Adds a category to an AnimNext asset
- add_data_interface(shared_variables: AnimNextSharedVariables, setup_undo_redo: bool = True, print_python_command: bool = True) AnimNextSharedVariablesEntry¶
deprecated: ‘add_data_interface’ was renamed to ‘add_shared_variables’.
- add_event_graph(name, event_struct, setup_undo_redo=True, print_python_command=True) AnimNextEventGraphEntry¶
Adds an event graph to an AnimNext asset
- Parameters:
name (Name)
event_struct (ScriptStruct)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- add_function(function_name, mutable, setup_undo_redo=True, print_python_command=True) RigVMLibraryNode¶
Adds a function to an AnimNext asset
- Parameters:
- Return type:
Adds shared variables to an AnimNext asset
- Parameters:
shared_variables (AnimNextSharedVariables)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
Adds shared variables struct to an AnimNext asset
- Parameters:
struct (ScriptStruct)
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- add_variable(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:
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:
- find_entry(name) AnimNextRigVMAssetEntry¶
Finds an entry in an AnimNext asset
- Parameters:
name (Name)
- Return type:
- remove_all_entries(setup_undo_redo=True, print_python_command=True) bool¶
Removes all entries from an AnimNext asset
- remove_entries(entries, setup_undo_redo=True, print_python_command=True) bool¶
Removes multiple entries from an AnimNext asset
- Parameters:
entries (Array[AnimNextRigVMAssetEntry])
setup_undo_redo (bool)
print_python_command (bool)
- Return type:
- remove_entry(entry, setup_undo_redo=True, print_python_command=True) bool¶
Removes an entry from an AnimNext asset
- Parameters:
entry (AnimNextRigVMAssetEntry)
setup_undo_redo (bool)
print_python_command (bool)
- Return type: