Giter Club home page Giter Club logo

ue5_python_api's Introduction

ue5_python_api

Unreal Python API Documentation

1. unreal.find_asset(name, type=Object, follow_redirectors=True) → Object

  • Purpose: This function is used to find an already loaded asset in UE5 by its name. You can specify the type of asset you're looking for (e.g., Texture, Material, Blueprint) to ensure the returned object is of the desired type. The follow_redirectors parameter helps in resolving any asset redirection that might have occurred (useful in asset management and refactoring scenarios).

  • Example: Finding a specific material to apply to a mesh dynamically during runtime or in editor scripts.

    material = unreal.find_asset("MyMaterial", unreal.Material)
    if material:
        print("Material found: ", material.get_name())
    else:
        print("Material not found.")

2. unreal.load_asset(name, type=Object, follow_redirectors=True) → Object

  • Purpose: Similar to find_asset but loads the asset into memory if it's not already loaded. This is particularly useful for assets that are not initially loaded at runtime or for tools that need to work with assets dynamically without the user having to open them first.

  • Example: Loading a texture dynamically to apply to an actor's material in a level.

    texture = unreal.load_asset("/Game/Textures/MyTexture", unreal.Texture2D)
    if texture:
        print("Texture loaded: ", texture.get_name())

3. unreal.new_object(type, outer=Transient, name=Default, base_type=Object) → Object

  • Purpose: Creates a new Unreal object of a specified class. You can define the object's outer (its parent/container), name, and ensure it inherits from a certain base type. This is fundamental for creating custom tools or runtime features that generate or manipulate content dynamically.

  • Example: Creating a new custom actor in the world.

    actor = unreal.new_object(unreal.Actor, unreal.get_editor_world(), "MyNewActor")
    if actor:
        print("New actor created: ", actor.get_name())

4. unreal.generate_class(type) → None

  • Purpose: Generates an Unreal class from a given Python class. This is crucial for extending UE5 with custom logic that integrates deeply with the engine, allowing Python to define new types that behave as native UE5 classes.

  • Example: Defining a new UObject subclass in Python and registering it with UE5.

    @unreal.uclass()
    class MyCustomClass(unreal.Object):
        pass
    
    unreal.generate_class(MyCustomClass)

5. unreal.log(str) → None

  • Purpose: Logs a message to the Unreal Engine log system. This is essential for debugging and providing feedback during the execution of Python scripts within UE5.

  • Example: Logging a message when a particular operation is completed.

    unreal.log("Operation completed successfully.")

6. unreal.get_default_object(type) → Object

  • Purpose: Retrieves the Class Default Object (CDO) of a given Unreal class. This is useful for accessing default properties of a class without needing an instance of that class.

  • Example: Getting the default walk speed of the character class.

    character_cdo = unreal.get_default_object(unreal.Character)
    print("Default walk speed: ", character_cdo.get_editor_property("walk_speed"))

Given the extensive list of functions and the detailed explanation format requested, providing comprehensive explanations for each function would result in a very long response. However, I'll cover a few more key functions to demonstrate how to document them effectively. For the remaining functions, I recommend following the template and approach outlined in the initial set of explanations.

7. unreal.get_editor_subsystem() → subsystem

  • Purpose: Retrieves an instance of an editor subsystem. Editor subsystems provide various functionalities within the UE5 editor, such as managing assets, levels, or the user interface. This function is crucial for scripts that aim to interact with or automate aspects of the editor's behavior.

  • Example: Accessing the asset registry to find all assets of a certain type.

    asset_registry = unreal.get_editor_subsystem(unreal.AssetRegistrySubsystem)
    all_materials = asset_registry.get_assets_by_class("Material")
    print(f"Found {len(all_materials)} materials.")

8. unreal.is_editor() → Bool

  • Purpose: Checks whether the Unreal Editor is currently running. This is useful for scripts that should behave differently when running in the editor versus in a standalone game or during a packaged game session.

  • Example: Conditional logic based on the environment.

    if unreal.is_editor():
        print("Running in editor mode.")
    else:
        print("Running in game mode.")

9. unreal.load_package(name) → Package

  • Purpose: Loads an Unreal package by name. Packages in UE5 are containers for assets and can include levels, blueprints, and other content. This function is particularly useful for tools that need to load or manipulate entire packages programmatically.

  • Example: Loading a level package to modify its contents.

    level_package = unreal.load_package("/Game/Levels/MyLevel")
    if level_package:
        print(f"Package {level_package.get_name()} loaded.")

10. unreal.purge_object_references(obj, include_inners=True) → None

  • Purpose: Purges all references to a given Unreal object from any living Python objects. This is crucial for memory management and avoiding dangling references that can lead to crashes or unpredictable behavior, especially after deleting objects in the editor.

  • Example: Cleaning up references after dynamically removing an actor.

    actor_to_delete = unreal.find_asset("MyActor", unreal.Actor)
    unreal.EditorLevelLibrary.destroy_actor(actor_to_delete)
    unreal.purge_object_references(actor_to_delete)
    print("Actor and its references purged.")

11. unreal.register_python_shutdown_callback(callable) → _DelegateHandle

  • Purpose: Registers a Python callable to be executed immediately before Python shuts down. This is useful for cleanup tasks or saving state before the Python environment is terminated.

  • Example: Registering a shutdown callback.

    def on_shutdown():
        print("Python environment is shutting down.")
    handle = unreal.register_python_shutdown_callback(on_shutdown)

Continuing with the detailed explanations for the Unreal Engine 5 Python API functions, let's dive into more of them:

12. unreal.reload(str) → None

  • Purpose: Reloads a specified Unreal Engine Python module. This function is particularly useful during development, allowing developers to quickly test changes to their Python scripts without restarting the Unreal Editor.

  • Example: Reloading a custom Python module named my_module.

    unreal.reload("my_module")
    print("Module reloaded successfully.")

13. unreal.get_type_from_class(class) → type

  • Purpose: Retrieves the best matching Python type for a given Unreal class. This function is crucial for scripts that need to dynamically work with Unreal objects and require type checking or casting based on the Unreal class.

  • Example: Getting the Python type for a StaticMesh Unreal class.

    python_type = unreal.get_type_from_class(unreal.StaticMesh)
    print(f"The Python type for StaticMesh is {python_type}.")

14. unreal.get_type_from_enum(enum) → type

  • Purpose: Obtains the best matching Python type for a given Unreal enumeration (enum). This can be essential for scripts that need to interpret or set enum values from Python, ensuring type safety and correctness.

  • Example: Getting the Python type for an enum EVisibility.

    enum_type = unreal.get_type_from_enum(unreal.EVisibility)
    print(f"The Python type for EVisibility is {enum_type}.")

15. unreal.log_error(str) → None

  • Purpose: Logs a given string as an error in the Unreal Engine's log system under the LogPython category. This is used for reporting errors encountered during the execution of Python scripts in UE5, helping in debugging and development.

  • Example: Logging an error message when an operation fails.

    unreal.log_error("Failed to load the specified asset.")

16. unreal.log_warning(str) → None

  • Purpose: Logs a given string as a warning in the Unreal Engine's log system, similar to log_error but for less severe issues. This can be used to alert users of potential problems or misconfigurations in scripts without treating them as critical errors.

  • Example: Warning about deprecated usage.

    unreal.log_warning("This function is deprecated and will be removed in future versions.")

17. unreal.log_flush() → None

  • Purpose: Flushes the log to disk, ensuring that all logged messages up to this point are saved. This is particularly useful in long-running scripts or processes where immediate log persistence is necessary.

  • Example: Flushing logs after a critical operation.

    unreal.log("Critical operation completed.")
    unreal.log_flush()

18. unreal.ustruct()

  • Purpose: A decorator used to define UStruct types from Python. This allows for the creation of custom data structures that can be used within UE5, enabling complex data manipulation and storage directly from Python scripts.

  • Example: Defining a new struct to hold game settings.

    @unreal.ustruct()
    class GameSettings:
        health: unreal.int32
        ammo: unreal.int32
    
    unreal.generate_struct(GameSettings)
    print("Custom struct defined and generated.")

19. unreal.load_class(outer, name, type=Object) → Class

  • Purpose: Loads an Unreal class with the given outer and name, optionally validating its base type. This function is useful for dynamically accessing or creating instances of Unreal classes from Python scripts.

  • Example: Loading a custom actor class.

    custom_actor_class = unreal.load_class(None, "CustomActor", unreal.Actor)
    if custom_actor_class:
        print(f"Custom Actor class loaded: {custom_actor_class.get_name()}")

20. unreal.register_slate_pre_tick_callback(callable) → _DelegateHandle

  • Purpose: Registers a callable (function) to be executed as a pre-tick callback in Slate, Unreal's UI framework. This can be used for updating custom UI elements or executing logic before the UI is drawn each frame.

  • Example: Registering a function to update UI elements.

    def update_ui(delta_seconds):
        # Update UI logic here
        pass
    
    handle = unreal.register_slate_pre_tick_callback(update_ui)
    print("UI update callback registered.")

21. unreal.unregister_slate_pre_tick_callback(handle) → None

Purpose: Unregisters a previously registered pre-tick callback in Slate, stopping the callback function from being executed before the UI is drawn each frame. This is useful for cleaning up or disabling UI updates when they are no longer needed.

Example: Unregistering a UI update function.

# Assuming 'handle' is the handle returned from a previous register call
unreal.unregister_slate_pre_tick_callback(handle)
print("UI update callback unregistered.")

22. unreal.register_slate_post_tick_callback(callable) → _DelegateHandle

Purpose: Registers a callable (function) to be executed as a post-tick callback in Slate. This can be used for executing logic after the UI has been drawn each frame, such as cleanup or late updates to the UI.

Example: Registering a function to perform cleanup tasks after UI render.

def cleanup_ui(delta_seconds):
    # Cleanup logic here
    pass

handle = unreal.register_slate_post_tick_callback(cleanup_ui)
print("Post UI render cleanup callback registered.")

23. unreal.unregister_slate_post_tick_callback(handle) → None

Purpose: Unregisters a previously registered post-tick callback in Slate. This function is necessary for removing callbacks that are no longer needed, preventing unnecessary executions and potential performance impacts.

Example: Unregistering a post-UI render cleanup function.

# Assuming 'handle' is the handle returned from a previous register call
unreal.unregister_slate_post_tick_callback(handle)
print("Post UI render cleanup callback unregistered.")

24. unreal.register_python_shutdown_callback(callable) →_DelegateHandle

Purpose: Registers a Python callable to be executed immediately before Python shutdowns within Unreal Engine. This is particularly useful for scripts that need to perform cleanup or save operations before the Python environment is closed.

Example: Registering a shutdown cleanup function.

def on_python_shutdown():
    print("Performing cleanup before Python shuts down.")

handle = unreal.register_python_shutdown_callback(on_python_shutdown)
print("Shutdown callback registered.")

25. unreal.unregister_python_shutdown_callback(handle) → None

Purpose: Unregisters a previously registered Python shutdown callback. This ensures that the callback function is no longer called during Python shutdown, which is useful for dynamically managing callbacks based on runtime conditions.

Example: Unregistering a shutdown cleanup function.

# Assuming 'handle' is the handle returned from a previous register call
unreal.unregister_python_shutdown_callback(handle)
print("Shutdown callback unregistered.")

26. unreal.uproperty(type, meta=None, getter=None, setter=None)

Purpose: Defines a UProperty field from Python, allowing for the creation of custom properties that can be exposed to Unreal's editor and used within Blueprints or C++. This is critical for extending the functionality of custom classes with new data fields.

Example: Defining a custom property in a Python class.

class MyCustomActor(unreal.Actor):
    @unreal.uproperty(int, meta={"ToolTip": "An example integer property."})
    def my_int_property(self):
        return self._my_int_property

    @my_int_property.setter
    def my_int_property(self, value):
        self._my_int_property = value"

27. unreal.ufunction(meta=None, ret=None, params=None, override=None, static=None, pure=None, getter=None, setter=None)

Purpose: Decorator used to define UFunction fields from Python. UFunctions are functions that can be called from Blueprints or C++, and this decorator allows Python methods to be exposed in such a way. This is essential for integrating Python logic into the broader UE scripting ecosystem.

Example: Exposing a Python method as a UFunction.

class MyCustomActor(unreal.Actor):
    @unreal.ufunction(ret=int, params=[int, int], meta={"Category": "Math Operations"})
    def add_numbers(self, a, b):
        return a + b

28. unreal.get_engine_subsystem() → subsystem

Purpose: This function is used to retrieve a specific engine subsystem instance. Engine subsystems offer a variety of lower-level functionalities that are global to the engine, such as the gameplay, rendering, and audio systems. This is crucial for scripts that need to interact with or modify the engine's core functionalities at runtime.

Example: Accessing the audio system to change global audio settings.

audio_system = unreal.get_engine_subsystem(unreal.AudioSubsystem)
if audio_system:
    audio_system.set_master_volume(0.5)
    print("Master volume set to 50%.")

29. unreal.get_interpreter_executable_path() → str

Purpose: Retrieves the file path to the Python interpreter executable that the Unreal Engine's Python plugin was compiled against. This can be essential for scripts that need to spawn separate Python processes or for debugging purposes to ensure compatibility with the correct Python version.

Example: Printing the path of the Python interpreter.

interpreter_path = unreal.get_interpreter_executable_path()
print(f"Python interpreter path: {interpreter_path}")

30. unreal.get_type_from_struct(struct) → type

Purpose: Obtains the best matching Python type for a given Unreal struct. This function is important for dynamic scripting where Python code needs to work with custom Unreal structures, ensuring that Python and UE4 types are correctly mapped.

Example: Getting the Python type for a custom struct named MyCustomStruct.

struct_type = unreal.get_type_from_struct(unreal.MyCustomStruct)
print(f"The Python type for MyCustomStruct is {struct_type}.")

31. unreal.load_module(str) → None

Purpose: Loads a specified Unreal module and generates Python bindings for its reflected types. This is particularly useful for extending scripts with functionalities from different parts of the engine or custom modules not loaded by default.

Example: Loading a custom gameplay module named "MyGameplayModule".

unreal.load_module("MyGameplayModule")
print("MyGameplayModule loaded and Python bindings generated.")

32. unreal.LOCTABLE(id, key) → Text

Purpose: Retrieves a localized text from the given string table ID and key. This is crucial for developing internationalized applications within Unreal, allowing scripts to programmatically access and use localized content.

Example: Fetching localized text for a UI element.

localized_text = unreal.LOCTABLE("MyStringTableID", "WelcomeMessage")
print(f"Localized welcome message: {localized_text}")

33. unreal.NSLOCTEXT(ns, key, source) → Text

Purpose: Creates a localized text using the specified namespace, key, and source string. This function is used when defining new localized texts within a script, providing a way to support multiple languages in game content or UI dynamically.

Example: Creating a new localized text entry for a game notification.

notification_text = unreal.NSLOCTEXT("GameNotifications", "HealthLow", "Warning: Health Low!")
print(f"Localized notification text: {notification_text}")

34. unreal.parent_external_window_to_slate(external_window, parent_search_method=SlateParentWindowSearchMethod.ACTIVE_WINDOW) → None

Purpose: Parents an OS-specific external window handle to a suitable Slate window, based on the search method provided. This is useful for integrating third-party applications or custom UI elements into the Unreal Editor's windowing system.

Example: Assuming you have an external window handle, parent it to the active Slate window.

# This is a hypothetical example, as obtaining a handle would depend on external APIs
external_window_handle = get_external_window_handle()
unreal.parent_external_window_to_slate(external_window_handle)
print("External window parented to an active Unreal Slate window.")

35. unreal.purge_object_references(obj, include_inners=True) → None

Purpose: Purges all references to a given Unreal object from any living Python objects. This function is essential for managing memory and preventing leaks by ensuring that objects are properly garbage collected when no longer needed.

Example: Purging references to a deleted actor.

actor = unreal.find_asset("MyActor", unreal.Actor)
unreal.EditorLevelLibrary.destroy_actor(actor)
unreal.purge_object_references(actor)
print("References to the actor have been purged.")

36. unreal.uclass()

Purpose: The unreal.uclass() decorator is used to define UClass types from Python, allowing developers to create new Unreal Engine classes directly from Python scripts. These classes can then be instantiated as objects within the Unreal Engine ecosystem, fully integrating with the engine's type system and enabling a wide range of functionalities from gameplay mechanics to editor extensions.

Example: Defining a new Unreal Engine class for a custom actor.

@unreal.uclass()
class MyCustomActor(unreal.Actor):
    """A simple custom actor defined in Python."""

37. unreal.uenum()

Purpose: This decorator is utilized to define UEnum types from Python, facilitating the creation of enumerated types (enums) that are recognized by Unreal Engine. Enums defined this way can be used to create readable, discrete sets of values for variables in UE scripts and blueprints, enhancing code clarity and maintainability.

Example: Creating an enum for character states.

@unreal.uenum()
class CharacterState:
    IDLE = 0
    RUNNING = 1
    JUMPING = 2
    ATTACKING = 3

38. unreal.ufunction(meta=None, ret=None, params=None, override=None, static=None, pure=None, getter=None, setter=None)

Purpose: The unreal.ufunction() decorator is designed to define UFunction fields from Python. UFunctions are functions that are callable within the UE scripting environment, including blueprints and C++. This decorator allows Python methods to be exposed to UE as functions, enabling complex logic to be implemented in Python and seamlessly integrated into the engine's workflow.

Example: Exposing a Python method as a callable function in Unreal Engine.

class MyActor(unreal.Actor):
    @unreal.ufunction(ret=int, params=[int, int], meta={"Category": "CustomMath"})
    def add(self, a, b):
        """Adds two numbers and returns the result."""
        return a + b

39. unreal.uproperty(type, meta=None, getter=None, setter=None)

Purpose: This function is used to define UProperty fields from Python, allowing the creation of properties that can be exposed to the Unreal Engine editor and used within blueprints or C++ code. It provides a way to add editable, serializable fields to custom classes, enriching the interaction between Python scripts and the engine.

Example: Adding a property to a custom actor class.

class MyCustomActor(unreal.Actor):
    @unreal.uproperty(int, meta={"Category": "Gameplay", "ToolTip": "Health points of the actor"})
    def health(self):
        return self._health

    @health.setter
    def health(self, value):
        self._health = value

40. unreal.ustruct()

Purpose: The unreal.ustruct() decorator is used to define UStruct types from Python, enabling the creation of structured data types that are recognized by Unreal Engine. Structs are useful for grouping related data together, and when defined in Python, they can be utilized both in scripting and within the UE editor for data management and manipulation.

Example: Defining a struct for game settings.

'''python

@unreal.ustruct() class GameSettings: """Struct to hold various game settings.""" resolution: unreal.FVector2D fullscreen: bool volume: float '''

41. unreal.uvalue(val, meta=None)

Purpose: This function is utilized to define constant values from Python, making them available within the Unreal Engine. It allows for the definition of named constants that can be used for comparison, configuration, and as parameters in functions and blueprints, ensuring consistency across the project.

Example: Defining a game version constant.

'''python

GAME_VERSION = unreal.uvalue("1.0.0") '''

42. unreal.new_object(type, outer=Transient, name=Default, base_type=Object) → Object

Purpose: Creates a new Unreal object of the specified class, optionally within a specified outer container and with a specific name. This is a foundational operation for scripts that dynamically generate content, manipulate scene hierarchy, or create utility objects at runtime or within the editor.

Example: Creating a new actor in the current level.

'''python

new_actor = unreal.new_object(unreal.Actor, unreal.get_editor_world(), name="MyNewActor") print(f"New actor created: {new_actor.get_name()}") '''

43. unreal.reload(str) → None

Purpose: Reloads a specified Unreal Python module, refreshing its state and code. This is crucial during development, allowing for rapid iteration on Python scripts without needing to restart the Unreal Engine editor.

Example: Reloading a custom module after making changes.

'''python

module_name = "my_custom_module" unreal.reload(module_name) print(f"Module {module_name} reloaded.") '''

44. unreal.unregister_python_shutdown_callback(handle) → None, unreal.unregister_slate_post_tick_callback(handle) → None, unreal.unregister_slate_pre_tick_callback(handle) → None

Purpose: These functions unregister previously registered callbacks for Python shutdown, Slate post-tick, and pre-tick events, respectively. They are essential for managing the lifecycle of scripts and UI elements that interact with the Unreal Engine editor or runtime, ensuring that resources are properly cleaned up and that callbacks do not persist beyond their intended lifespan.

Example: Unregistering a shutdown callback.

# Assuming 'handle' is a previously obtained handle from registering a callback
unreal.unregister_python_shutdown_callback(handle)
print("Shutdown callback unregistered.")

45. unreal._EnumEntry

Purpose: The unreal._EnumEntry class represents a single entry in an enumeration within Unreal Engine, encapsulating both the name and value of the enum entry. It is a fundamental part of the Unreal Engine Python API, providing a structured way to interact with enum values, facilitating readability and maintainability of scripts that deal with enum-based properties or logic.

Example: Accessing an enum entry's name and value.

# Example enum entry access
my_enum_entry = unreal._EnumEntry(enum="ECharacterState", name="IDLE", value=0)
print(f"Enum Name: {my_enum_entry.name}, Enum Value: {my_enum_entry.value}")
In this simplified example, unreal._EnumEntry is used to represent an enum entry for a hypothetical character state enum (ECharacterState). The name and value properties provide direct access to the enum entry's information, useful for debugging, logging, or conditional logic based on enum states.

46. unreal._Logger

Purpose: The unreal._Logger class provides a Python interface for logging within the Unreal Engine environment, utilizing specified functions for logging and flushing log messages. It is designed to integrate Python's logging mechanism with Unreal's logging system, offering a streamlined way to output log messages, errors, or warnings from Python scripts directly to Unreal's log console. This class is especially useful for custom logging setups where developers need precise control over the logging and flushing process.

log_func: A function or callable that is used to log messages. flush_func: A function or callable that is used to flush the log buffer, ensuring that all pending log messages are written out.

Methods:

flush(): Calls the flush_func provided during initialization to flush the log buffer. write(log_text): Logs a single line of text using the log_func provided during initialization. writelines(lines): Logs multiple lines of text, iterating over the lines iterable and logging each item. Example Usage:

# Example setup for a custom logger in Unreal Engine Python scripts

# Define custom logging functions
def custom_log_func(message):
    unreal.log(f"Custom Log: {message}")

def custom_flush_func():
    unreal.log_flush()

# Create an instance of the _Logger with custom functions
custom_logger = unreal._Logger(log_func=custom_log_func, flush_func=custom_flush_func)

# Using the logger
custom_logger.write("This is a test log message.")
custom_logger.writelines(["First line of log", "Second line of log"])
custom_logger.flush()  # Ensures all messages are flushed to Unreal's log console

print("Custom logging operations completed.")

47. unreal._ObjectBase

Purpose: unreal._ObjectBase serves as the base class for all Unreal Engine objects exposed to Python. It provides a foundational interface for interacting with these objects, offering methods for reflection-based method calls, property access, class information retrieval, and more. This class is crucial for working with Unreal Engine's object system within Python, allowing scripts to manipulate game objects, access their properties, and call their methods dynamically.

Key Methods:

call_method(name, args=tuple(), kwargs=dict()) → object: Calls a method on the Unreal object using reflection, useful for invoking methods that aren't directly exposed to Python. cast(object) → Object: Casts a given object to this Unreal object type, enabling type-safe operations on objects. get_class() → Class: Retrieves the Unreal class of the instance, useful for reflection and runtime type checking. get_default_object() → Object: Gets the class default object (CDO) of this type, providing access to default properties and settings. get_editor_property(name) → object: Fetches the value of any property visible to the editor, facilitating easy access to object properties within scripts. get_name() → str, get_full_name() → str, get_path_name() → str: Various methods for retrieving the name and path of the instance, important for identification and asset management. get_outer() -> Object, get_outermost() → Package: Methods for navigating the object's hierarchy, either to its immediate outer object or the outermost package. modify(bool) -> bool: Marks the instance as about to be modified, integrating with Unreal's undo/redo system. set_editor_property(name, value, notify_mode=PropertyAccessChangeNotifyMode.DEFAULT) → None: Sets the value of any property visible to the editor, with support for change notifications. Example Usage:

# Accessing and manipulating an actor's properties via _ObjectBase methods

# Assuming 'actor' is an Unreal Engine actor object
actor = unreal.EditorLevelLibrary.get_selected_level_actors()[0]

# Get and set properties using get_editor_property and set_editor_property
initial_location = actor.get_editor_property("location")
print(f"Initial Location: {initial_location}")

# Modify the actor's location
new_location = unreal.Vector(100, 200, 300)
actor.set_editor_property("location", new_location, unreal.PropertyAccessChangeNotifyMode.ALWAYS)
print("Actor location updated.")

# Dynamically calling a method on the actor
result = actor.call_method("GetActorLocation")
print(f"Actor Location via call_method: {result}")

48. unreal._WrapperBase

Purpose: The unreal._WrapperBase class serves as the foundational base class for all Unreal Engine types exposed to Python. This class underpins the Python integration with Unreal Engine, providing core functionalities that enable Python scripts to interact seamlessly with Unreal Engine's object model and type system. It's designed to encapsulate the essential behaviors and attributes that are common across all exposed Unreal Engine types, making it a critical component of Unreal's Python API.

Key Characteristics:

It acts as the superclass for a wide range of Unreal Engine objects accessible from Python, including actors, components, and other UObject-derived classes. Provides basic initialization and common functionality that is extended by more specific subclasses to represent the diverse types within Unreal Engine. Although it's rare for developers to interact directly with _WrapperBase in everyday scripting, understanding its role is crucial for advanced scripting, custom tool development, and extending the Python API with new functionalities. Example Usage:

While you typically won't instantiate or directly interact with unreal._WrapperBase, understanding its place in the hierarchy is important for creating custom classes or extending existing ones within the Unreal Python API. Here's a conceptual example to illustrate how unreal._WrapperBase fits into the Python API's class hierarchy:

# Conceptual illustration of extending an Unreal Engine type in Python

class MyCustomActor(unreal.Actor):
    """
    This custom actor class extends unreal.Actor, which indirectly inherits
    from unreal._WrapperBase, inheriting its foundational behaviors.
    """
    
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        # Initialization code specific to MyCustomActor

# Usage of MyCustomActor would follow Unreal's Python API conventions,
# benefiting from the functionalities provided by _WrapperBase through inhe

49. unreal.ActorIterator

Purpose: The unreal.ActorIterator class is designed for iterating over Unreal actor instances in a level or scene. This iterator type is essential for scripts that need to perform operations on multiple actors, such as searching, filtering, or batch processing based on specific criteria. By providing a Pythonic way to iterate over actors, it simplifies the task of managing scene contents programmatically within the Unreal Engine environment.

Key Characteristics:

Enables efficient traversal of all actor instances in the current level or specified levels. Supports filtering actors by class, allowing developers to iterate over actors of a specific type. Facilitates bulk operations on actors, such as attribute modification, component addition/removal, or event triggering. Example Usage:

Here's a simple example illustrating how to use unreal.ActorIterator to iterate over all actors of a specific type in the current level, modifying a property for each:

# Example: Iterating over all StaticMeshActors in the current level and printing their names

for actor in unreal.ActorIterator(unreal.StaticMeshActor):
    print(actor.get_name())

    # Example modification: Hiding all StaticMeshActors
    actor.set_actor_hidden_in_game(True)

    # Committing changes if necessary (e.g., for undo/redo stack)
    actor.modify()
    actor.post_edit_change()
    
print("Processed all StaticMeshActors.")

50. unreal.Array

Purpose: The unreal.Array class is tailored for handling Unreal Engine array instances in Python, mirroring the functionality and behavior of TArray in C++. It provides a Pythonic interface to Unreal Engine's native arrays, allowing for the manipulation of array data with common Python operations. This class is instrumental for scripts that interact with Unreal properties or require array manipulation, offering methods to modify and query the array efficiently.

Key Methods:

copy() / copy(): Creates a shallow copy of the Unreal array. append(value): Adds a value to the end of the array, similar to TArray::Add in C++. cast(type, obj): Casts the given object to the specified Unreal array type. count(value): Returns the count of occurrences of a value in the array. extend(iterable): Extends the array with elements from the given iterable, akin to TArray::Append in C++. index(value, start=0, stop=len): Finds the index of a value in the array, with optional start and stop parameters for the search range. insert(index, value): Inserts a value at the specified index in the array. pop(index=len - 1): Removes and returns the element at the given index, or the last element by default. remove(value): Removes the first occurrence of a value in the array. resize(len): Adjusts the size of the array to the specified length, potentially adding default elements or truncating. reverse(): Reverses the array in place. sort(key=None, reverse=False): Performs an in-place sort of the array, with optional key function and reverse order parameters. Example Usage:

# Example: Creating an Unreal Array of integers and manipulating it

# Create an Unreal Array of integers
int_array = unreal.Array([1, 2, 3, 4, 5])

# Append a new element
int_array.append(6)

# Extend the array with more elements
int_array.extend([7, 8, 9])

# Remove an element
int_array.remove(3)

# Insert an element at a specific index
int_array.insert(0, 10)

# Pop the last element
last_element = int_array.pop()

# Sort the array in reverse order
int_array.sort(reverse=True)

# Print the final array state
print(f"Final array state: {int_array}")

51. unreal.AutomationScheduler

Purpose: The unreal.AutomationScheduler class is designed to manage the scheduling and execution of Python functions and generators within the Unreal Editor, allowing them to run across editor ticks. This facilitates the creation of non-blocking, latent operations that can yield execution back to the editor between steps. It's particularly useful for automating tasks that require waiting for editor responses or events, such as loading assets, setting up levels, or any operation that benefits from being spread out over time to keep the editor responsive.

Key Methods:

add_latent_command(task): Adds a function or generator to the scheduler. Functions will be executed once, while generators will have one iteration executed per tick. This method can also be used as a decorator to easily schedule functions for execution.

cleanup(): Forces the shutdown of the singleton scheduler instance, if it is running. This is useful for cleaning up pending tasks when they are no longer needed or before starting a new batch of tasks.

set_latent_command_timeout(seconds): Sets a timeout for Python Automation Test latent commands. This timeout specifies how long the scheduler should wait for a latent command to complete before considering it failed or stalled.

Example Usage:

Scheduling a simple function:

@unreal.AutomationScheduler.add_latent_command
def print_message():
    print("This message is printed between editor ticks.")
    ```

Using a generator for tasks that require waiting between steps:

```python

@unreal.AutomationScheduler.add_latent_command
def setup_level():
    print("Starting level setup...")
    yield unreal.EditorAssetLibrary.load_asset("/Game/Path/To/SomeAsset")
    print("Asset loaded. Continuing setup...")
    yield  # Yielding with no value simply waits for the next tick.
    print("Level setup complete.")
    ```

Cleanup before exiting or resetting:

```python

# Force cleanup of the AutomationScheduler to ensure no tasks are left pending
unreal.AutomationScheduler.cleanup()

Setting a timeout for latent commands:

# Set a timeout of 10 seconds for latent commands
unreal.AutomationScheduler.set_latent_command_timeout(10)

52. unreal.ClassIterator

Purpose: The unreal.ClassIterator class is designed for iterating over Unreal Engine class types. This iterator facilitates the process of enumerating through all loaded Unreal classes within the editor or during runtime, providing a Pythonic way to access and interact with the Unreal Engine's reflection system. It's particularly useful for operations that require knowledge or manipulation of various Unreal Engine classes, such as dynamic instantiation, type inspection, or building custom editor tools that operate across a wide range of object types.

Example Usage:

# Example: Iterating over all subclasses of unreal.Actor

for cls in unreal.ClassIterator():
    # Ensure the class is a subclass of unreal.Actor (excluding unreal.Actor itself)
    if issubclass(cls, unreal.Actor) and cls != unreal.Actor:
        print(cls.get_name())

# This loop prints the names of all loaded classes that are subclasses of unreal.Actor,
# demonstrating how to dynamically access and work with Unreal Engine's class hierarchy.

53. unreal.DelegateBase

Purpose: The unreal.DelegateBase class serves as the foundation for all delegate instances exposed to Python by Unreal Engine. Delegates are a key part of Unreal Engine's event handling and callback system, allowing for the dynamic binding and execution of functions in response to various events or conditions within the game or application. This class provides the mechanisms to interact with, bind, and invoke these delegates from Python, bridging the functionality of Unreal Engine's C++ delegates with Python's callable objects.

Key Methods:

copy() / copy(): Creates a shallow copy of the delegate, allowing for the duplication of delegate bindings without affecting the original. bind_callable(callable): Binds the delegate to a Python callable object, enabling the delegate to invoke Python functions or methods when executed. bind_delegate(delegate): Binds the delegate to another delegate, effectively duplicating the binding of the original delegate. bind_function(obj, name): Binds the delegate to a named function on a given Unreal object instance, allowing for the invocation of Unreal Engine functions. cast(object): Casts the given object to this Unreal delegate type, useful for type conversion and ensuring proper delegate handling. execute(...): Executes the delegate, triggering an error if the delegate is unbound and therefore has no function to call. execute_if_bound(...): Safely executes the delegate if it is bound to a function, otherwise does nothing, avoiding errors from unbound delegate calls. is_bound(): Checks if the delegate is currently bound to a function or callable, indicating whether it is ready to be executed. unbind(): Removes any current binding from the delegate, making it unbound and preventing it from executing any function until it is bound again. Example Usage:

# Example: Using unreal.DelegateBase to bind and execute a Python callable

# Define a Python function to be called by the delegate
def my_python_callable():
    print("Python callable executed by Unreal delegate.")

# Create an instance of an Unreal delegate (assume MyDelegateType exists and is derived from DelegateBase)
my_delegate = unreal.MyDelegateType()

# Bind the delegate to the Python callable
my_delegate.bind_callable(my_python_callable)

# Check if the delegate is bound
if my_delegate.is_bound():
    print("Delegate is bound, executing...")
    # Execute the delegate, which will call my_python_callable
    my_delegate.execute()
else:
    print("Delegate is not bound.")

# Unbinding the delegate
my_delegate.unbind()

54. unreal.EnumBase

Purpose: The unreal.EnumBase class represents the foundation for all enumeration (enum) instances exposed to Python by Unreal Engine. Enums in Unreal Engine are used to define a set of named integer constants, providing a readable and efficient way to represent various states, options, or categories within the engine and game code. The EnumBase class provides Python scripts with the ability to interact with these enums, offering functionality to cast objects to enum types and access the static enum definition.

Key Methods:

cast(object) → enum: Casts the given Python object to the specific Unreal enum type represented by this EnumBase class. This method is useful for ensuring that a Python object is treated as the correct enum type within scripts, especially when dealing with generic or dynamically typed data. static_enum() → Enum: Retrieves the static enum object associated with this EnumBase type. This method is essential for accessing the underlying Unreal Engine enum definition, including its members and values, directly from Python. It allows scripts to reflect on the enum, such as listing its possible values or converting between names and values.

Example Usage:

# Example: Working with an Unreal Engine enum in Python

# Assuming there's an Unreal Engine enum named "EGameplayState" exposed to Python
# EGameplayState might have values like IDLE, RUNNING, PAUSED, etc.

# Access the static enum definition for EGameplayState
gameplay_state_enum = unreal.EGameplayState.static_enum()

# Iterate over all enum members and print their names and values
for name in gameplay_state_enum.names():
    value = gameplay_state_enum.get_value(name)
    print(f"Name: {name}, Value: {value}")

# Casting an object to the enum type (useful in dynamic or generic contexts)
# Assume 'some_value' is a variable that is expected to be an instance of EGameplayState
casted_value = unreal.EGameplayState.cast(some_value)
print(f"Casted Value: {casted_value}")

# This example demonstrates how to access and interact with an enum's definition,
# list its members, and ensure type correctness through casting.

55. unreal.FixedArray

Purpose: The unreal.FixedArray class is designed to represent fixed-size array instances that are exposed to Python by Unreal Engine. Unlike dynamically sized arrays (unreal.Array), FixedArray is used for arrays whose size does not change over their lifetime, mirroring the behavior and constraints of fixed-size arrays in C++. This class provides Python scripts with the ability to interact with these fixed arrays, allowing for operations such as copying and type casting while maintaining the fixed-size nature of the underlying data.

Key Methods:

copy() / copy(): Creates a shallow copy of the Unreal fixed-array, enabling duplication of the array's contents while preserving the original array unchanged. cast(type, obj) → FixedArray: Casts the given Python object to the specific Unreal fixed-array type represented by this FixedArray class. This method ensures that the Python object is treated as the correct fixed-array type, which is particularly useful when dealing with generic or dynamically typed data that needs to be operated on as a fixed array. Example Usage:

# Example: Interacting with an Unreal Engine fixed-size array in Python

# Assuming there's an Unreal Engine fixed-array named "MyFixedArray" exposed to Python
# and it is a fixed-size array of integers with a predefined size.

# Creating a FixedArray instance (assuming it can be directly instantiated or obtained from an Unreal object)
fixed_array = unreal.FixedArray([1, 2, 3, 4, 5])

# Copying the fixed array
fixed_array_copy = fixed_array.copy()

# Casting a generic object to a FixedArray (useful in dynamic contexts)
# Assume 'some_object' is a variable that is expected to be an instance of a FixedArray
casted_array = unreal.FixedArray.cast(int, some_object)

# Note: This example assumes the ability to directly instantiate `unreal.FixedArray` which
# might not directly correspond to how fixed arrays are typically created or obtained in Unreal Engine.
# Fixed arrays are often exposed as properties of other objects rather than being standalone entities.

print(f"Original FixedArray: {fixed_array}")
print(f"Copied FixedArray: {fixed_array_copy}")

56. unreal.FunctionDef

Purpose: The unreal.FunctionDef class is utilized within Unreal Engine's Python API to define UFunction fields from Python scripts. UFunctions are a cornerstone of Unreal Engine's architecture, allowing for the declaration of functions that can be exposed to the editor, Blueprints, and other parts of the engine. By using unreal.FunctionDef, developers can create custom functions in Python that integrate seamlessly with the Unreal Engine ecosystem, including support for Blueprint callable functions, replication, and event binding. Example Usage:

Defining a custom UFunction in Python requires a combination of unreal.FunctionDef and decorators to specify the function's properties and its integration points with Unreal Engine. Here's a conceptual example:

import unreal

# Assuming we have a custom Actor class defined in Python
class MyCustomActor(unreal.Actor):

    # Define a UFunction that can be called from Blueprints
    @unreal.ufunction(ret=int, params=[int, int], meta=dict(Category="CustomMath", Tooltip="Adds two integers"))
    def add_integers(self, a, b):
        """
        A custom function defined in Python that adds two integers.
        
        Args:
            a (int): The first integer.
            b (int): The second integer.
        
        Returns:
            int: The sum of a and b.
        """
        return a + b

57. unreal.Map

Purpose: The unreal.Map class represents a map (or dictionary) data structure exposed to Python by Unreal Engine. It mimics the behavior of Python's native dictionaries but is integrated with Unreal Engine's type system, allowing for the use of Unreal Engine types as keys and values. This class facilitates operations such as storing, retrieving, and manipulating key-value pairs within the context of Unreal Engine projects, making it suitable for data storage, configuration settings, and other scenarios where associative arrays are useful.

Key Methods:

copy() / copy(): Creates a shallow copy of the Unreal map, enabling duplication of the map's contents. cast(key, value, obj): Casts the given Python object to the specific Unreal map type, based on the specified key and value types. This method is useful for ensuring type safety when working with maps that are expected to contain specific Unreal Engine types. clear(): Removes all items from the map, resulting in an empty map. fromkeys(sequence, value=None): Creates a new Unreal map with keys from the provided sequence and all values set to the given default value. The key and value types are inferred based on the provided arguments. get(key, default=None): Retrieves the value associated with the specified key, or returns the default value if the key is not found in the map. items(): Returns a view object that displays a list of the map's key-value pair tuples, similar to Python's dictionary .items() method. keys(): Returns a view object that displays a list of the map's keys, akin to Python's dictionary .keys() method. pop(key, default=None): Removes the specified key from the map and returns its value. If the key is not found, it returns the default value if provided, or raises a KeyError otherwise. popitem(): Removes and returns an arbitrary key-value pair from the map. If the map is empty, a KeyError is raised. setdefault(key, default=None): Inserts the key with the specified value into the map if the key is not already present. If the key exists, it returns its associated value. update(...): Updates the map with key-value pairs from another map or an iterable of key-value pairs, similar to Python's dictionary .update() method. values(): Returns a view object that displays a list of the map's values, similar to Python's dictionary .values() method. Example Usage:

# Example: Creating and manipulating an Unreal Map

# Create an Unreal Map instance
my_map = unreal.Map()
my_map["key1"] = "value1"
my_map["key2"] = "value2"

# Copy the map
my_map_copy = my_map.copy()

# Update the map with new key-value pairs
my_map.update({"key3": "value3", "key4": "value4"})

# Get a value with a default
value = my_map.get("key5", "default_value")

# Remove a key and get its value
popped_value = my_map.pop("key1", "Not Found")

# Iterate over keys and values
for key, value in my_map.items():
    print(f"{key}: {value}")

# Clear the map
my_map.clear()

print(f"Map after clearing: {list(my_map.items())}")

58. unreal.MulticastDelegateBase

Purpose: The unreal.MulticastDelegateBase class represents multicast delegates in Unreal Engine that are exposed to Python. Multicast delegates are a powerful feature of Unreal Engine that allow multiple functions to be bound to a single delegate, enabling them to all be called at once when the delegate is invoked. This is particularly useful for event-driven programming where multiple subscribers may want to respond to a single event happening, such as a player's health changing or an environmental trigger being activated.

Key Methods:

copy() / copy(): Creates a shallow copy of the multicast delegate, allowing for the duplication of delegate bindings. add_callable(callable): Adds a Python callable to the delegate's invocation list, allowing it to be called when the delegate is broadcast. add_callable_unique(callable): Adds a Python callable to the invocation list only if it is not already present, ensuring unique bindings. add_function(obj, name): Binds a named Unreal Engine function on a given object to the delegate, allowing it to be called upon delegate invocation. add_function_unique(obj, name): Adds a unique binding for a named Unreal Engine function on a given object, avoiding duplicate bindings. broadcast(...): Invokes the delegate, calling all bound functions in the invocation list. cast(object): Casts the given object to this Unreal delegate type, ensuring type safety. clear(): Clears all bindings from the delegate's invocation list, effectively unbinding all functions. contains_callable(callable): Checks if a Python callable is in the delegate's invocation list. contains_function(obj, name): Determines whether a named Unreal function on a given object is bound to the delegate. is_bound(): Checks if the delegate has any bindings in its invocation list. remove_callable(callable): Removes a Python callable from the delegate's invocation list. remove_function(obj, name): Unbinds a named Unreal function on a given object from the delegate. remove_object(obj): Removes all bindings associated with a specific object from the delegate's invocation list. Example Usage:

# Example: Using unreal.MulticastDelegateBase to bind and invoke Python callables

# Define a Python function to respond to an event
def on_custom_event():
    print("Custom event triggered.")

# Assuming `my_multicast_delegate` is an instance of an Unreal multicast delegate
# Bind the Python function to the multicast delegate
my_multicast_delegate.add_callable(on_custom_event)

# Broadcast the delegate to trigger all bound functions
my_multicast_delegate.broadcast()

# Remove the callable from the multicast delegate
my_multicast_delegate.remove_callable(on_custom_event)

59. unreal.Name

Purpose: The unreal.Name class represents the concept of names within Unreal Engine, which are used extensively as identifiers for objects, properties, and more. Unlike simple strings, Name instances in Unreal are optimized for performance, particularly for comparison operations, and are used where identifiers might be compared frequently. This class provides a Python interface to Unreal Engine's FName type, allowing scripts to safely and efficiently handle these name identifiers.

Key Methods:

cast(object) → Name: Converts a given Python object to an unreal.Name instance, ensuring that it can be used wherever FName is expected in Unreal Engine's API. This method is crucial for interacting with parts of the Unreal Engine API that require FName parameters. is_none() → bool: Checks if the unreal.Name instance is equivalent to NAME_None, Unreal Engine's way of representing an empty or unset name. This method is useful for validation checks to avoid processing on unnamed or uninitialized identifiers. is_valid() → bool: Determines whether the unreal.Name instance represents a valid name. This can be used to ensure that operations using the name are likely to succeed, avoiding errors related to invalid identifiers. Example Usage:

# Example: Working with unreal.Name

# Casting a string to unreal.Name
my_name = unreal.Name.cast("MyIdentifier")

# Checking if the name is valid and not 'None'
if my_name.is_valid() and not my_name.is_none():
    print(f"The name '{my_name}' is valid and not None.")
else:
    print("The name is invalid or None.")

# Using unreal.Name in an API call that requires an FName
# Assuming there's a function that requires an FName (unreal.Name in Python)
# unreal.some_function_requiring_fname(my_name)

60. unreal.ObjectIterator

Purpose: The unreal.ObjectIterator class is designed for iterating over instances of Unreal Objects within the current Unreal Engine project or environment. This iterator facilitates the traversal of all loaded objects, or those of a specific class, providing a Pythonic way to access and interact with the vast array of objects managed by Unreal Engine. It's particularly useful for scripts that need to perform operations on multiple objects, such as searching, filtering, batch processing, or simply enumerating through objects for analysis and debugging purposes. Example Usage:

Here's a simple example illustrating how to use unreal.ObjectIterator to iterate over all actors of a specific type in the current level and perform operations on them:

# Example: Iterating over all instances of a specific actor class

# Assuming you're looking for instances of StaticMeshActor
for obj in unreal.ObjectIterator(unreal.StaticMeshActor):
    # Perform operations on each StaticMeshActor
    print(f"Found StaticMeshActor: {obj.get_name()}")

    # Example operation: Hide all StaticMeshActors
    if isinstance(obj, unreal.StaticMeshActor):  # Double-check the instance type if needed
        obj.set_actor_hidden_in_game(True)

# Note: This example assumes that the ObjectIterator is being used in an editor script
# where actors and other objects are loaded and accessible.

61. unreal.PropertyDef

Purpose: The unreal.PropertyDef class is used within Unreal Engine's Python API to define FProperty fields from Python scripts. FProperty is a fundamental part of Unreal Engine's reflection system, representing properties of objects that can be automatically serialized, replicated, and exposed to the editor and Blueprints. By using unreal.PropertyDef, developers can create custom properties for their Python-based Unreal Engine classes, facilitating data storage, configuration, and interaction that fully integrates with the engine's ecosystem.

Example Usage:

Defining custom properties in Python requires understanding how unreal.PropertyDef works in conjunction with other Unreal Engine Python API features, such as decorators, to register these properties with the engine. Here's a conceptual example:

import unreal

# Assuming we have a custom Actor class
class MyCustomActor(unreal.Actor):
    
    # Use decorators and unreal.PropertyDef to define a custom property
    @unreal.uproperty(int, meta={"ToolTip": "An example integer property.", "DisplayName": "My Int Property"})
    def my_int_property(self):
        return self._my_int_property

    @my_int_property.setter
    def my_int_property(self, value):
        self._my_int_property = value

62. unreal.ScopedEditorTransaction

Purpose: The unreal.ScopedEditorTransaction class is designed for creating and managing editor transactions within the Unreal Engine editor through Python scripts. Transactions in Unreal Engine are used to encapsulate a series of operations or changes into a single unit that can be undone or redone as a single action. This is particularly useful for creating editor tools or scripts that modify the level, assets, or other properties in a way that integrates with the editor's undo/redo system. The ScopedEditorTransaction class leverages Python's context management capabilities to ensure that transactions are correctly started and ended, even in the case of errors. Example Usage:

import unreal

# Example: Modifying an actor's location within a transaction
actor = unreal.EditorLevelLibrary.get_selected_level_actors()[0]

# Start a scoped transaction
with unreal.ScopedEditorTransaction("Move Actor Example") as transaction:
    # Perform the operation that we want to be able to undo
    new_location = unreal.Vector(100, 200, 300)
    actor.set_actor_location(new_location)

    # Optionally cancel the transaction if some condition is met
    # if some_condition:
    #     transaction.cancel()

63. unreal.ScopedSlowTask

Purpose: The unreal.ScopedSlowTask class is designed for creating and managing slow tasks within the Unreal Engine editor through Python. These tasks are typically long-running operations that could benefit from user feedback, such as progress bars or cancelation options. This class provides a structured way to implement these operations, integrating with Unreal Engine's task management system to display progress and handle user interactions. Example Usage:

import unreal

# Example: Performing a long-running operation with progress feedback
num_steps = 10
description = "Processing long task..."

# Initialize a ScopedSlowTask with the number of steps and a description
with unreal.ScopedSlowTask(num_steps, description) as slow_task:
    slow_task.make_dialog(can_cancel=True)  # Optionally allow the user to cancel the task

    for step in range(num_steps):
        # Check if the user has requested cancelation
        if slow_task.should_cancel():
            break

        # Update the task's progress and description for the current step
        step_description = f"Processing step {step + 1} of {num_steps}..."
        slow_task.enter_progress_frame(1, step_description)

        # Perform the actual work for this step (placeholder for real operations)
        unreal.log(f"Completed step {step + 1}")

64. unreal.SelectedActorIterator

Purpose: The unreal.SelectedActorIterator class is specifically designed for iterating over actor instances that are currently selected in the Unreal Engine editor. This iterator provides a convenient and efficient way for scripts to access and manipulate the set of actors that a user has selected in the editor, enabling batch operations such as transformations, property adjustments, or custom scripting actions to be applied directly to those actors. Example Usage:

import unreal

# Example: Iterating over all selected actors in the Unreal Editor and printing their names

for actor in unreal.SelectedActorIterator():
    # Perform any desired operations on each selected actor
    print(f"Selected Actor: {actor.get_name()}")

    # Example operation: Hide the selected actors
    actor.set_actor_hidden_in_game(True)

65. unreal.Set

Purpose: The unreal.Set class is designed to represent set data structures within Unreal Engine that are exposed to Python. Similar to Python's native set, unreal.Set allows for the storage of unique elements, providing a robust interface for performing set operations like unions, intersections, differences, and more. This class is particularly useful for scripts that need to manage collections of unique items within Unreal Engine, such as unique actor tags, asset identifiers, or custom game data.

Key Methods:

copy() / copy(): Creates a shallow copy of the Unreal set, allowing for duplication of the set's contents. add(value): Adds a value to the set if it is not already present, ensuring the uniqueness of elements. cast(type, obj): Casts the given Python object to the specific Unreal set type, based on the specified element type. This method is useful for type conversion and ensuring the set contains elements of the correct type. clear(): Removes all elements from the set, resulting in an empty set. difference(...) -> Set: Returns a new set containing elements present in the set but not in the other specified iterables. difference_update(...) -> None: Modifies the set to contain only elements present in the set but not in the other specified iterables. discard(value): Removes the specified value from the set if present; otherwise, does nothing. intersection(...) -> Set: Returns a new set containing only elements that are present in both the set and the other specified iterables. intersection_update(...) -> None: Modifies the set to contain only elements that are present in both the set and the other specified iterables. isdisjoint(other) → bool: Checks if the set has no elements in common with another set (i.e., if their intersection is empty). issubset(other) → bool: Checks if all elements of the set are contained in another set. issuperset(other) → bool: Checks if the set contains all elements of another set. pop() → value: Removes and returns an arbitrary element from the set. Raises a KeyError if the set is empty. remove(value) → None: Removes the specified value from the set. Raises a KeyError if the value is not present. symmetric_difference(other) -> Set: Returns a new set containing elements that are in either of the sets but not in both. symmetric_difference_update(other) -> None: Modifies the set to contain only elements that are in either of the sets but not in both. union(...) -> Set: Returns a new set containing all elements that are in the set or in any of the specified iterables. update(...) -> None: Modifies the set to contain all elements that are in the set or in any of the specified iterables.

Example Usage:

import unreal

# Create an Unreal set and add some values
my_set = unreal.Set()
my_set.add("Item1")
my_set.add("Item2")

# Create another set for comparison
other_set = unreal.Set()
other_set.add("Item2")
other_set.add("Item3")

# Perform set operations
union_set = my_set.union(other_set)
intersection_set = my_set.intersection(other_set)
difference_set = my_set.difference(other_set)

# Print results
print(f"Union: {list(union_set)}")
print(f"Intersection: {list(intersection_set)}")
print(f"Difference: {list(difference_set)}")

# Remove an item and check if it's disjoint
my_set.remove("Item1")
print(f"Is disjoint with other_set: {my_set.isdisjoint(other_set)}")

66. unreal.StructBase

Purpose: The unreal.StructBase class represents the foundation for all struct instances exposed to Python by Unreal Engine. Structs in Unreal Engine are used to group related data together in a single entity, similar to C++ structs or Python tuples, but with rich integration into Unreal's type system, editor, and serialization mechanisms. StructBase provides a Python interface to these structs, allowing for the manipulation of their properties, copying, and type-safe assignment between structs.

Key Methods:

copy() / copy(): Creates a shallow copy of the Unreal struct, enabling the duplication of its contents without modifying the original struct. assign(object): Assigns the values from the given object to this Unreal struct, allowing for easy copying of values between compatible structs. cast(object) → struct: Converts a given Python object to the specific Unreal struct type represented by this StructBase class, ensuring type safety and compatibility. get_editor_property(name) → object: Retrieves the value of a property by name, provided the property is visible in the Unreal Editor, facilitating reflection and dynamic property access. set_editor_properties(property_info): Sets multiple properties at once using a dictionary of name-value pairs, streamlining the process of updating struct properties from Python code. set_editor_property(name, value, notify_mode=PropertyAccessChangeNotifyMode.DEFAULT): Sets the value of a single property by name, with an optional parameter to control notification behavior, allowing for fine-grained control over property updates. static_struct() → Struct: Returns the static struct object associated with this StructBase type, offering access to the struct's metadata, such as its fields and type information. to_tuple() → tuple: Converts the Unreal struct into a Python tuple containing the values of its properties, simplifying the process of exporting or inspecting struct data. Example Usage:

import unreal

# Assuming there is a custom Unreal Engine struct named "MyCustomStruct" exposed to Python
# with properties "Property1" (int) and "Property2" (string)

# Create an instance of MyCustomStruct
my_struct = unreal.MyCustomStruct(Property1=10, Property2="Hello")

# Copy the struct
struct_copy = my_struct.copy()

# Update a property value
my_struct.set_editor_property("Property1", 20)

# Retrieve and print a property value
property1_value = my_struct.get_editor_property("Property1")
print(f"Property1 Value: {property1_value}")

# Assign values from another struct
another_struct = unreal.MyCustomStruct(Property1=30, Property2="World")
my_struct.assign(another_struct)

# Convert struct to tuple
struct_tuple = my_struct.to_tuple()
print(f"Struct as Tuple: {struct_tuple}")

67. unreal.StructIterator

Purpose: The unreal.StructIterator class is designed for iterating over Unreal Engine struct types that are exposed to Python. This iterator enables developers to programmatically traverse and inspect the various struct types registered within the Unreal Engine ecosystem, facilitating operations such as dynamic type analysis, documentation generation, or the automatic creation of UI elements based on struct properties. It provides a Pythonic way to access and work with the metadata of Unreal Engine's complex data structures. Example Usage:

import unreal

# Example: Iterating over all Unreal Engine struct types and printing their names

for struct_type in unreal.StructIterator():
    # Get the static struct object to access its properties
    static_struct = struct_type.static_struct()
    
    # Print the struct's name
    print(f"Struct Name: {static_struct.get_name()}")
    
    # Optionally, list properties of the struct
    for property in static_struct.get_properties():
        print(f"    Property Name: {property.get_name()}, Type: {property.get_property_class().get_name()}")

# This loop demonstrates how to access and display information about each struct type,
# including its properties and their types, leveraging Unreal Engine's reflection system

68. unreal.Text

Purpose: The unreal.Text class is designed to represent text data within Unreal Engine, exposed to Python. It is used to handle localized text, supporting internationalization (i18n) and localization (l10n) efforts within Unreal Engine projects. This class offers methods to work with text in ways that respect cultural norms for formatting numbers, currencies, percentages, and more. Additionally, it provides functionality for checking the state of the text, such as whether it's empty, culture-invariant, or derived from a string table.

Key Methods:

as_currency(val, code): Converts a number to a localized currency representation, using the smallest unit for the given currency code (e.g., cents for USD). as_number(num): Converts a number to its localized textual representation according to the current culture's formatting rules. as_percent(num): Converts a number to a localized percentage representation, formatting it according to the current culture's norms. cast(object): Casts a given Python object to an unreal.Text instance, enabling type-safe operations with text within Unreal Engine's Python API. format(...): Formats the text using the provided arguments, similar to Python's str.format method, but with support for localization. is_culture_invariant(): Checks if the text is culture-invariant, meaning it does not change based on the current culture (locale). is_empty(): Determines whether the text is empty. is_empty_or_whitespace(): Checks if the text is either empty or consists only of whitespace characters. is_from_string_table(): Indicates whether the text references an entry in a string table, supporting efficient localization updates. is_transient(): Checks if the text is transient, implying it's not meant for serialization or long-term storage. to_lower(): Converts the text to lowercase in a way that respects the current culture's casing rules. to_upper(): Converts the text to uppercase, considering the culture-specific rules for case conversion. Example Usage:

import unreal

# Converting a number to a localized text representation
number_text = unreal.Text.as_number(123456)
print(f"Localized Number: {number_text}")

# Formatting text with localized currency representation
currency_text = unreal.Text.as_currency(123456, "USD")
print(f"Localized Currency: {currency_text}")

# Creating and formatting text with placeholders
formatted_text = unreal.Text.format("Hello, {name}! Welcome to Unreal Engine.", name="John Doe")
print(f"Formatted Text: {formatted_text}")

# Checking if the text is empty and converting to uppercase
if not formatted_text.is_empty():
    uppercase_text = formatted_text.to_upper()
    print(f"Uppercase Text: {uppercase_text}")

69. unreal.ValueDef

Purpose: The unreal.ValueDef class is designed for defining constant values from Python within the Unreal Engine environment. This facility allows Python scripts to declare constants that can then be utilized throughout the Unreal Engine project, ensuring that key values remain consistent and are easily maintainable. This is particularly useful for game development scenarios where certain values, such as gameplay parameters, need to be accessed across different scripts and Blueprints. Example Usage:

While there's no direct class named unreal.ValueDef in the documentation available up to April 2023, defining constant values in Python for use in Unreal Engine typically involves setting global variables in a module. These constants can then be accessed throughout the Python scripts in the project. Here’s a conceptual approach to defining and using constants in an Unreal Engine Python script:

# Define constants in a Python module
GAMEPLAY_PARAMETER = 100
LEVEL_NAME = "MainLevel"

# Usage in another part of the project
import unreal

# Accessing the constant value
print(f"Gameplay Parameter: {GAMEPLAY_PARAMETER}")
print(f"Level Name: {LEVEL_NAME}")

# Example of using the constant in an Unreal Engine operation
actor = unreal.find_actor_by_name(unreal.get_all_level_actors(), LEVEL_NAME)
if actor:
    actor.set_actor_scale3d(unreal.Vector(GAMEPLAY_PARAMETER, GAMEPLAY_PARAMETER, GAMEPLAY_PARAMETER))

70. unreal.AbcCompressionSettings

The unreal.AbcCompressionSettings class encapsulates settings for compressing Alembic (.abc) files within Unreal Engine, especially when importing these files using the Alembic Importer plugin. These settings control how the imported Alembic data is processed, optimized, and potentially compressed for use within Unreal Engine projects. Here's a breakdown of its properties and functionalities:

Properties: bake_matrix_animation (bool): Determines whether animations that only involve transformations (translation, rotation, scale) should be converted into vertex animations. This can be useful when the animation is complex, but you want to preserve it accurately in a form that Unreal Engine can utilize more efficiently.

base_calculation_type (BaseCalculationType): Specifies the method used to determine the number of bases (key morph targets) to be generated from the Alembic file. The bases can be calculated based on a percentage of the total or a fixed maximum number.

max_number_of_bases (int32): Sets a fixed number of morph targets to generate from the Alembic data. This is used when base_calculation_type is set to generate a fixed number of bases.

merge_meshes (bool): Indicates whether individual meshes found in the Alembic file should be merged. Merging can be beneficial for compression and performance but might not be desirable for all use cases, especially when individual mesh manipulation is required.

minimum_number_of_vertex_influence_percentage (float): Defines the minimum percentage of vertices that must be influenced by a morph target for it to be considered valid. This setting helps filter out morph targets that have minimal impact, reducing the amount of data needed to be stored.

percentage_of_total_bases (float): When the base_calculation_type is set to be percentage-based, this value determines what percentage of the calculated total number of bases should be generated as morph targets.

Usage Example: While the class is primarily used internally by the engine during the import process, understanding how to configure these settings can significantly impact the performance and quality of Alembic animations in Unreal Engine. If you're scripting the import process or providing a UI for custom import settings, you might adjust these properties to balance between animation fidelity and performance.

import unreal

# Example configuration for AbcCompressionSettings
compression_settings = unreal.AbcCompressionSettings(
    merge_meshes=True,
    bake_matrix_animation=False,
    base_calculation_type=unreal.BaseCalculationType.PERCENTAGE_BASED,
    percentage_of_total_bases=50.0,
    max_number_of_bases=100,
    minimum_number_of_vertex_influence_percentage=0.5
)

# Assuming you have a function that imports Alembic files where you can pass these settings
# unreal.import_alembic_file("path/to/your/file.abc", compression_settings)

71. unreal.AbcConversionSettings

The unreal.AbcConversionSettings class encapsulates the settings used for converting Alembic (.abc) files upon import into Unreal Engine, with specific focus on transformation adjustments like scaling, rotation, and texture coordinate flipping. These settings allow for the customization of how Alembic content is integrated into an Unreal Engine project, ensuring that assets from different 3D content creation tools fit seamlessly within the engine's environment and coordinate system.

Properties: flip_u (bool): Determines whether the U channel of the texture coordinates should be flipped. This can be necessary when the source content's UV mapping does not match Unreal Engine's expected UV layout.

flip_v (bool): Controls the flipping of the V channel in the texture coordinates. Since different software packages have different conventions for the V axis in UV mappings, this option ensures compatibility with Unreal Engine's UV coordinate system.

preset (AbcConversionPreset): Specifies a preset for the conversion settings, which can be tailored to match the conventions of popular 3D content creation tools like Maya, 3ds Max, etc. This preset automatically configures other settings to match the expected transformations for content coming from the chosen software.

rotation (Vector): Defines a rotation in Euler angles (pitch, yaw, roll) that should be applied to the imported Alembic content. This allows for the adjustment of asset orientation to fit the Unreal Engine scene's coordinate system.

scale (Vector): Specifies the scale factors to be applied to the imported content. This is critical for ensuring that the asset sizes are consistent with Unreal Engine's world scale and other assets within the project.

Usage Example: Configuring and applying AbcConversionSettings is typically part of the Alembic import process. While direct usage in script might be limited to specific import automation tasks, understanding how to adjust these settings is crucial for correctly importing Alembic files.

import unreal

# Create an instance of AbcConversionSettings with customized import settings
conversion_settings = unreal.AbcConversionSettings(
    preset=unreal.AbcConversionPreset.MAYA,
    flip_u=False,
    flip_v=True,
    scale=unreal.Vector(1.0, -1.0, 1.0),
    rotation=unreal.Vector(0.0, 0.0, 0.0)
)

# Assuming there's a function or procedure to import Alembic files where you can specify conversion settings
# This might be part of a custom import script or automation tool within an Unreal Engine project
# unreal.import_alembic("path/to/your/alembic.abc", conversion_settings)

72. unreal.AbcGeometryCacheSettings

The unreal.AbcGeometryCacheSettings class encapsulates a set of import settings tailored for handling geometry cache data from Alembic (.abc) files in Unreal Engine. These settings allow for significant customization of the import process, focusing on performance optimization, data compression, and animation handling. Here's an overview of each property and its impact on the import process:

Properties: apply_constant_topology_optimizations (bool): This setting forces the importer to apply topology optimizations only once, rather than dynamically based on the preprocessor's decisions. While this can ensure consistent motion blur effects for meshes with constant topology, it may cause issues with some meshes.

compressed_position_precision (float): Specifies the precision used for compressing vertex positions. A lower value means better accuracy but less compression, while a higher value results in more aggressive compression at the cost of precision.

compressed_texture_coordinates_number_of_bits (int32): Determines the bit precision for compressing texture coordinates. Higher values offer better results with less compression; lower values increase compression at the expense of accuracy.

flatten_tracks (bool): Indicates whether all vertex animations should be merged into a single track. This can simplify the animation data but might reduce flexibility in handling individual animations.

motion_vectors (AbcGeometryCacheMotionVectorsImport): Specifies how motion vectors are imported, which are essential for accurate motion blur effects. Options include importing no motion vectors, importing them for vertices, or importing them for positions and normals.

optimize_index_buffers (bool): Enables or disables optimization of index buffers for each unique frame. This optimization aims to improve GPU cache coherency but is a resource-intensive process, so it's generally recommended to be turned off unless specifically needed.

store_imported_vertex_numbers (bool): When enabled, stores the original vertex numbers from the DCC tool. This is useful for debugging or when precise mapping of vertex data from the source file is required.

Example Usage: While unreal.AbcGeometryCacheSettings is typically used internally during the Alembic import process, understanding these settings is crucial when scripting custom imports or adjusting import parameters for optimal performance and fidelity.

import unreal

# Create a new instance of AbcGeometryCacheSettings with custom settings
geometry_cache_settings = unreal.AbcGeometryCacheSettings(
    flatten_tracks=True,
    store_imported_vertex_numbers=False,
    apply_constant_topology_optimizations=False,
    motion_vectors=unreal.AbcGeometryCacheMotionVectorsImport.NO_MOTION_VECTORS,
    optimize_index_buffers=False,
    compressed_position_precision=0.01,
    compressed_texture_coordinates_number_of_bits=10
)

# Assuming you have a function to import Alembic files where you can specify these settings
# This function would use geometry_cache_settings as part of the import process

73. unreal.AbcMaterialSettings

The unreal.AbcMaterialSettings class is specifically designed to manage material-related settings during the import of Alembic (.abc) files into Unreal Engine. These settings determine how Unreal Engine should handle materials that are associated with the geometry in the Alembic file, particularly in relation to Face Set names defined within the file. Face Sets in Alembic files are often used to assign different materials to different parts of a mesh.

Properties: create_materials (bool): Specifies whether Unreal Engine should automatically create new materials for each unique Face Set name found within the Alembic file. This is useful when importing models that require distinct materials for different parts of the mesh but do not have those materials defined within the file. Note that this option will only work if the Alembic file includes Face Set names.

find_materials (bool): Determines whether Unreal Engine should attempt to match and assign existing materials based on the Face Set names found within the Alembic file. This option is useful for projects where materials corresponding to the Face Set names already exist within the Unreal Engine project, allowing for automatic material assignment during import.

Example Usage: When importing an Alembic file into Unreal Engine using Python scripting, you might configure the AbcMaterialSettings to automatically create or find materials based on the Face Sets defined in the file. Here's how you might set up these material settings:

import unreal

# Configuration for importing an Alembic file with specific material settings
material_settings = unreal.AbcMaterialSettings(create_materials=True, find_materials=False)

# Assuming there's a function to import an Alembic file where you can specify material settings
# This function would utilize the configured material_settings for the import process
# The exact function to import Alembic files might vary or need to be implemented as part of the import

74. unreal.AbcNormalGenerationSettings

The unreal.AbcNormalGenerationSettings class provides a set of parameters for controlling the generation and processing of normals (and optionally tangents) when importing geometry from Alembic (.abc) files into Unreal Engine. This is crucial for ensuring that the visual appearance of meshes, particularly how they interact with lighting, matches the artistic intent or source material. Correctly setting these parameters can significantly impact the quality and performance of the imported geometry within Unreal Engine projects.

Properties: force_one_smoothing_group_per_object (bool): If enabled, this setting forces each object to use a single smoothing group, effectively smoothing all normals across the object. This can be useful for objects that should appear as entirely smooth but might bypass the need for more nuanced smoothing group calculations.

hard_edge_angle_threshold (float): This threshold determines the angle at which an edge between two faces is considered "hard" (creating a sharp edge) versus "soft" (smoothly interpolated). Values closer to 0 create more smoothing, whereas values closer to 1 result in more hard edges.

ignore_degenerate_triangles (bool): When enabled, degenerate triangles (triangles with very small area or invalid configurations) are ignored in the normal (and tangent) computation process. This helps avoid visual artifacts and issues in mesh geometry that might arise from problematic geometry.

recompute_normals (bool): If set to true, this option forces the recomputation of normals for the imported geometry, disregarding any normal data that might be included in the Alembic file. This is useful when the source normals are incorrect or unsuitable for Unreal Engine's rendering system.

skip_computing_tangents (bool): This option, when enabled, skips the computation of tangents for the geometry cache. While skipping tangent computation can improve performance, especially for streaming, it may lead to visual artifacts in materials relying on normal mapping.

Example Usage: Here's a hypothetical example of how unreal.AbcNormalGenerationSettings might be configured for an Alembic import process, focusing on achieving a balance between visual quality and performance:

import unreal

# Configure normal generation settings for Alembic import
normal_gen_settings = unreal.AbcNormalGenerationSettings(
    force_one_smoothing_group_per_object=False,
    hard_edge_angle_threshold=0.5,  # Intermediate value for a balance between hard and soft edges
    recompute_normals=True,  # Ensure normals are suitable for Unreal Engine
    ignore_degenerate_triangles=True,  # Avoid issues from problematic geometry
    skip_computing_tangents=False  # Compute tangents for better material appearance
)

# Assuming these settings are part of a larger Alembic import process
# You would pass `normal_gen_settings` to the relevant import function or process

75. unreal.AbcSamplingSettings

The unreal.AbcSamplingSettings class is designed to configure how animations are sampled during the import of Alembic (.abc) files into Unreal Engine. These settings allow for precise control over which frames of the animation are imported and how the sampling is performed, optimizing both the quality and the size of the imported data according to specific project needs.

Properties: frame_end (int32): Specifies the ending frame index for sampling the animation. This allows you to limit the import to a specific portion of the animation.

frame_start (int32): Defines the starting frame index from which to begin sampling the animation, enabling you to skip initial frames that may not be needed.

frame_steps (int32): Determines the steps between frames when sampling the animation. A value greater than 1 can be used to skip frames, reducing the total number of samples and potentially decreasing file size.

sampling_type (AlembicSamplingType): Indicates the type of sampling performed while importing the animation. Options include per-frame sampling, uniform sampling over time, or no sampling.

skip_empty (bool): If set to true, empty (pre-roll) frames at the beginning of the animation will be skipped, starting the import at the first frame that contains data.

time_steps (float): Specifies the time interval between samples when using time-based sampling. This is an alternative to frame-based sampling and allows for consistent temporal spacing between samples.

Example Usage: When importing an Alembic file, these sampling settings can be adjusted to match the requirements of your project, whether you're looking to maintain high fidelity by sampling every frame or to reduce the imported animation's complexity and size by sampling less frequently.

import unreal

# Configure sampling settings for Alembic import
sampling_settings = unreal.AbcSamplingSettings(
    sampling_type=unreal.AlembicSamplingType.PER_FRAME,
    frame_steps=1,
    time_steps=0.0,
    frame_start=0,
    frame_end=100,
    skip_empty=True
)

# Assuming these settings are part of a larger Alembic import process
# You would pass `sampling_settings` to the relevant import function or process
# This might be particularly useful in custom import scripts or tools within Unreal Engine projects

76. unreal.AbcStaticMeshSettings

The unreal.AbcStaticMeshSettings class configures import settings specifically for Static Meshes when importing Alembic (.abc) files into Unreal Engine. These settings allow users to control how the geometry from Alembic files is processed and integrated into the Unreal project as Static Mesh assets. Understanding and correctly configuring these settings can significantly impact the usability, performance, and visual fidelity of imported meshes.

Properties: generate_lightmap_u_vs (bool): Determines whether or not lightmap UVs should be automatically generated for the imported static meshes. Generating lightmap UVs is essential for proper light baking on static geometry but can increase import time. It's useful when the source file doesn't contain UVs suitable for lightmapping.

merge_meshes (bool): Controls whether all the static meshes found in the Alembic file should be merged into a single Static Mesh asset upon import. Merging can simplify scene hierarchy and potentially improve performance by reducing draw calls, but it might lead to issues like overlapping UVs, which are problematic for texturing and lightmap generation.

propagate_matrix_transformations (bool): If enabled, any matrix transformations (such as translations, rotations, and scaling) that are defined in the Alembic file will be applied directly to the mesh geometry during import. This ensures that the meshes appear in Unreal with the correct orientation, position, and scale but can make further adjustments within Unreal more complex.

Example Usage: When importing an Alembic file containing static mesh data, you might want to merge all meshes into a single asset, ensure that matrix transformations are applied to maintain correct positioning, and generate lightmap UVs for lighting calculations:

import unreal

# Configure static mesh settings for Alembic import
static_mesh_settings = unreal.AbcStaticMeshSettings(
    merge_meshes=True,
    propagate_matrix_transformations=True,
    generate_lightmap_u_vs=True
)

77. AbilityEndedData

The AbilityEndedData struct specifically holds information about an ability that has just ended. This can include details such as whether the ability was canceled, completed its execution successfully, or other end conditions. It's typically used within the system to notify other parts of the game, such as UI elements or AI decision-making components, that an ability has finished its operation, allowing them to respond accordingly.

Key Components While the specific properties of AbilityEndedData were not detailed in the prompt, a struct of this nature might typically include:

Ability Reference: A reference to the ability instance that has ended. WasCancelled: A boolean indicating whether the ability was canceled before it could complete naturally. ActivationInfo: Information about how the ability was activated, which could include the source character, target(s), and any relevant context or parameters that were used when the ability was initiated. Example Usage In a gameplay scenario, AbilityEndedData might be used in a callback or event listener that is triggered when an ability concludes. Here's a conceptual example of how it might be used in a game:

def on_ability_ended(ability_ended_data):
    if ability_ended_data.WasCancelled:
        print(f"The ability {ability_ended_data.AbilityReference.Name} was canceled.")
    else:
        print(f"The ability {ability_ended_data.AbilityReference.Name} has completed.")

78. unreal.AbilityTriggerData

The unreal.AbilityTriggerData struct in Unreal Engine is part of the Gameplay Abilities System, designed to define the conditions under which a gameplay ability should be triggered or activated in response to external events. This struct makes it possible to set up abilities that automatically activate under certain gameplay scenarios, such as when a character enters a specific state, performs an action, or when an event tagged in a particular way occurs in the game.

Properties: trigger_source (GameplayAbilityTriggerSource): Specifies the source or type of event that can trigger the ability. This enum can include sources like events from a gameplay tag, ability activation from input, or other predefined conditions within the Gameplay Abilities System.

trigger_tag (GameplayTag): Defines the specific tag that the ability responds to. Gameplay tags are a flexible system used throughout Unreal Engine to categorize and identify various gameplay elements and events. The trigger_tag property allows developers to specify exactly which tag an ability should listen for in order to trigger.

Example Usage: Here's a conceptual example showing how AbilityTriggerData might be set up for an ability that triggers when a character performs a dodge action:

import unreal

# Assuming there's a custom gameplay ability class defined elsewhere
class MyDodgeAbility(unreal.GameplayAbility):
    # Initialization and ability logic here

# Create an instance of AbilityTriggerData
dodge_trigger_data = unreal.AbilityTriggerData()

# Configure the trigger to respond to an input action with a specific tag
dodge_trigger_data.trigger_source = unreal.GameplayAbilityTriggerSource.GAMEPLAY_EVENT
dodge_trigger_data.trigger_tag = unreal.GameplayTag("Action.Character.Dodge")

# Assuming there's a mechanism to associate the trigger data with an ability
# This might involve adding the trigger data to the ability's configuration
my_ability = MyDodgeAbility()
my_ability.trigger_data = dodge_trigger_data

# In practice, you would use Unreal Engine's editor or additional API functions
# to properly register this configuration as part of the ability's setup.

79. ActiveGameplayCue

Purpose: ActiveGameplayCue instances represent specific instances of gameplay cues that are currently active within the game. Gameplay Cues are a way to link gameplay events (like receiving damage, healing, or any custom event) to visual, audio, or other kinds of effects. This linkage allows for a more dynamic and responsive game environment where actions have immediate and noticeable feedback.

Base Class: Inherits from FastArraySerializerItem, which is a part of Unreal Engine's system for efficiently serializing arrays of data, particularly useful for replicating state changes across the network in multiplayer games. This inheritance implies that ActiveGameplayCue is designed to be efficiently serialized and synchronized between clients and servers in a networked game.

Example Usage: While there isn't a direct simple code example for ActiveGameplayCue due to its integrated nature within the Gameplay Abilities System, the conceptual usage would involve:

Defining a Gameplay Cue: This involves setting up a cue in the game's data (using Unreal Engine's editor or data tables) to respond to specific gameplay tags.

Triggering the Cue: Through gameplay logic, such as executing an ability or applying a gameplay effect, a gameplay cue can be triggered, creating an instance of ActiveGameplayCue.

Responding to the Cue: The game's systems, including visual and audio components, react to the activation of the gameplay cue, providing immediate feedback based on the cue's definition.

80. ActiveGameplayCueContainer

Purpose: It serves as a container for ActiveGameplayCue instances, tracking all the gameplay cues that are currently active. This can include visual effects, sound effects, or any other types of feedback initiated by gameplay events such as abilities being used, status effects being applied, or environmental triggers.

Base Class: Inherits from FastArraySerializer, which is utilized within Unreal Engine to optimize the serialization and replication of arrays, especially those that change frequently. This makes ActiveGameplayCueContainer highly efficient for network replication, ensuring that gameplay cue states are kept in sync across all participants in a multiplayer game.

Example Usage: While specific implementation details may vary depending on the project's requirements, the general approach to using ActiveGameplayCueContainer involves:

Tracking Active Cues: The container tracks active cues, typically associated with gameplay abilities or effects. For example, when a character casts a spell, the corresponding gameplay cue for the spell effect is activated and managed within the container.

Networking: In a multiplayer game, when a gameplay cue is added or removed from the container, the FastArraySerializer base class handles the efficient serialization and replication of these changes to all connected clients, ensuring consistent game state across all players.

Gameplay Logic: The container is queried or updated based on game logic, such as when abilities are used, status effects are applied, or environmental triggers are activated. The system then updates the visual, auditory, or other feedback mechanisms associated with the active cues.

81. unreal.ActiveGameplayEffect

The unreal.ActiveGameplayEffect class is a crucial part of Unreal Engine's Gameplay Abilities System. It represents an instance of a GameplayEffect that is currently active on a game object, such as a character or an item. This system is designed to provide a robust framework for creating and managing a wide variety of game mechanics, including buffs, debuffs, stat modifications, and more, in a network-efficient manner.

Key Components of ActiveGameplayEffect: GameplayEffect Spec: Each instance of ActiveGameplayEffect contains a GameplayEffectSpec, which details the specifics of the effect, including which stats it modifies, any gameplay tags it applies or requires, and its duration or magnitude. The spec is essentially the blueprint that defines how the effect interacts with the game object it's applied to.

Start Time: The start time indicates when the effect was applied. This is used to manage the duration of temporary effects and to schedule periodic effects, such as damage over time.

Execution Schedule: The class tracks when the effect should execute its logic next, which is particularly relevant for effects with ongoing impacts, such as healing or damage over time, or effects that have a delayed activation.

Replication Callbacks: In multiplayer games, it's crucial that the state of gameplay effects is shared across the network to all relevant clients. ActiveGameplayEffect includes mechanisms for ensuring that effects are properly replicated and that any changes to their state are synchronized across clients.

Example Use Case: While ActiveGameplayEffect instances are typically managed by the Gameplay Abilities System itself rather than directly instantiated in game scripts, understanding their role is key for designing gameplay. For instance, when a character casts a spell that applies a damage-over-time effect to an enemy, the system would create an ActiveGameplayEffect instance to represent this effect, using the defined GameplayEffectSpec to apply the relevant damage at specified intervals.

82. unreal.ActiveGameplayEffectHandle

The unreal.ActiveGameplayEffectHandle class in Unreal Engine's Gameplay Abilities System serves as a unique identifier or handle for instances of active gameplay effects. This handle is crucial for managing gameplay effects applied to characters, items, or other entities within the game, especially when specific effects need to be modified, queried, or removed after their initial application.

Key Features: Unique Identification: The handle provides a stable reference to a specific active gameplay effect, allowing game systems or abilities to refer to and manipulate the effect regardless of changes in the underlying data structure that stores active effects.

Safe Interaction: Using a handle to refer to gameplay effects helps prevent issues related to direct pointers, such as dangling pointers if the effect is removed or the list of active effects is modified. It enables safe and reliable interaction with gameplay effects from outside the FActiveGameplayEffectsContainer.

Control Over Effects: Handles are essential for scenarios where an ability or game logic needs to precisely control the lifecycle of an effect it has applied. For example, an ability that applies a buff but needs to remove it prematurely based on certain conditions can use the handle to specifically target and remove the correct effect.

Operators: Equality (eq): The equality operator allows for comparison between two ActiveGameplayEffectHandle instances to determine if they refer to the same active gameplay effect. This is useful for tracking and managing effects.

Inequality (ne): The inequality operator enables checking whether two handles do not refer to the same gameplay effect, facilitating logic that depends on the uniqueness of applied effects.

Example Use Case: Consider an ability in a game that applies a temporary speed boost to a character. When the ability is activated, it creates an active gameplay effect that increases the character's movement speed. The system returns an ActiveGameplayEffectHandle for this effect. If the character then enters a state where speed boosts are not allowed (e.g., being stunned), the game logic can use the handle to specifically remove the speed boost effect, even if other effects are also active on the character.

# Pseudocode for applying and later removing an active gameplay effect based on game logic

# Apply the effect and receive a handle
speed_boost_effect_handle = apply_speed_boost_effect_to_character(character)

# Later in the game, if a condition is met (e.g., character is stunned)
if character.is_stunned():
    # Use the handle to remove the specific speed boost effect
    remove_gameplay_effect_by_handle(character, speed_boost_effect_handle)

83. unreal.ActorComponentTickFunction

The unreal.ActorComponentTickFunction class in Unreal Engine is a specialized tick function used for ticking actor components. It is a part of the engine's ticking system, which is responsible for updating the logic of game objects every frame. This particular tick function is designed to call the UActorComponent::ConditionalTick method, allowing actor components to update their state or perform actions on a regular basis.

Key Properties: allow_tick_on_dedicated_server (bool): Determines whether the tick function is allowed to run on a dedicated server. This is useful for controlling server-side logic and optimization.

end_tick_group (TickingGroup): Specifies the tick group that this tick function must finish in. Tick groups organize the order in which objects in the game world are updated, helping to manage dependencies and execution order.

start_with_tick_enabled (bool): Indicates whether the tick function should start enabled. If set to true, ticking begins immediately; otherwise, it can be enabled at a later time.

tick_even_when_paused (bool): If set to true, the tick function will execute even when the game is paused. This is useful for components that need to update in special circumstances, such as UI elements.

tick_group (TickingGroup): Defines the minimum tick group for this tick function. Like end_tick_group, this controls the update order but focuses on the earliest point the tick function can execute.

tick_interval (float): Specifies how often, in seconds, this tick function will execute. Setting this to a positive value can reduce the update frequency for performance optimization or to achieve a specific behavior.

Usage: Tick functions are essential for components that need to update regularly. For example, a component that checks proximity to other objects or updates animations may rely on ticking. The ActorComponentTickFunction is automatically managed by the Unreal Engine ticking system, but developers can customize its behavior through the properties mentioned above.

Here is a conceptual example of how one might configure the tick function within a custom actor component:

// Example C++ code to demonstrate setting up an ActorComponentTickFunction

void UMyCustomComponent::InitializeComponent()
{
    Super::InitializeComponent();

    // Ensure the tick function starts enabled
    PrimaryComponentTick.bStartWithTickEnabled = true;

    // Set the tick function to run every 0.5 seconds
    PrimaryComponentTick.TickInterval = 0.5f;

    // Optionally, configure the tick to continue even when the game is paused
    PrimaryComponentTick.bTickEvenWhenPaused = true;

    // Specify tick groups if needed for precise update ordering
    PrimaryComponentTick.TickGroup = TG_PrePhysics;
    PrimaryComponentTick.EndTickGroup = TG_PostPhysics;
}

84. unreal.ActorDataLayer

The unreal.ActorDataLayer class in Unreal Engine is a struct designed to facilitate the organization of actors within the game world or scene by grouping them into layers. This organizational tool is especially useful in complex projects with numerous actors, allowing for efficient management, selection, and operation on groups of actors based on their assigned data layer.

Key Feature: Name (Name): The primary (and only) property of the ActorDataLayer is its name, which acts as a unique identifier for the layer. This name is used to assign actors to the layer and to reference the layer within the Unreal Editor and through scripts or blueprints.

Usage: Data layers in Unreal Engine are utilized for various purposes, from simplifying the level design process to optimizing runtime performance by selectively enabling or disabling groups of actors. For example, you might have data layers for different environmental elements (e.g., "Trees", "Buildings"), gameplay elements (e.g., "Enemies", "Pickups"), or for differentiating between actors used in gameplay versus those used for background or aesthetic purposes.

Here’s a conceptual example of how ActorDataLayer might be used within Unreal Engine scripts or blueprints:

# Assume we have an actor that we want to assign to a specific data layer for organizational purposes

# Create an instance of ActorDataLayer with a given name
myDataLayer = unreal.ActorDataLayer(name="GameplayCriticalObjects")

# Assuming there's a way to assign an actor to a data layer programmatically
# This could involve editor scripting or blueprint logic, depending on the context
actor.assign_to_data_layer(myDataLayer)

# Later, you might want to query all actors within a specific data layer to perform operations
# such as hiding all actors not critical to gameplay for a performance boost in a certain game mode
actors_in_layer = unreal.EditorLevelLibrary.get_actors_in_data_layer(myDataLayer)
for actor in actors_in_layer:
    actor.set_visibility(False, True)  
    # Example operation: Hide the actor

85. unreal.ActorForWorldTransforms

The unreal.ActorForWorldTransforms class in Unreal Engine is a structure designed to specify parts of an actor for which world transforms can be determined. This struct is particularly useful in contexts where precise control over the position, rotation, and scale of specific actor components or sockets is required, such as in cinematic sequences, animations, or when dynamically positioning objects in the world.

Properties: actor (Actor): This property holds a reference to the Actor object. It specifies the actor from which world transforms are to be obtained or manipulated.

component (SceneComponent): The SceneComponent property refers to a specific component within the actor. This allows for more granular control, enabling operations to be performed on individual components rather than the actor as a whole.

socket_name (Name): The Socket Name property specifies the name of a socket within the component. Sockets are predefined points within a component that can be used for attaching other objects, determining locations, or deriving transforms.

Usage: The ActorForWorldTransforms struct is especially useful in cinematic tools like Unreal Engine's Sequencer, where detailed control over the movement and orientation of objects is necessary to create complex scenes and animations. It allows for specifying exactly which part of an actor should be animated or manipulated, down to the level of individual components or even specific sockets on those components.

Example Use Case: Suppose you're creating a cinematic sequence where a character needs to pick up a weapon. You might use ActorForWorldTransforms to specify the hand socket of the character as the point where the weapon should be attached or to animate the hand reaching out to grab the weapon.

# Example usage of ActorForWorldTransforms to specify a socket on an actor's component

# Assuming 'character_actor' is a reference to the character actor in the scene
# and 'character_hand_component' is the mesh component representing the character's hand

hand_socket_name = "RightHandSocket"  # The name of the socket on the hand component

# Create an instance of ActorForWorldTransforms specifying the actor, component, and socket
actor_for_transforms = unreal.ActorForWorldTransforms(actor=character_actor,
                                                      component=character_hand_component,
                                                      socket_name=hand_socket_name)

# This instance can now be used in contexts where a specific world transform is needed,
# such as attaching an object to the socket or animating the component based on socket location

86. unreal.ActorInstanceHandle

The unreal.ActorInstanceHandle class in Unreal Engine is a struct designed to provide a unified and efficient way to reference both heavyweight actors and lightweight instances within the engine. This handle facilitates the management and interaction with objects in the game world, offering flexibility in how objects are represented and manipulated, particularly in scenarios where performance optimization is crucial.

Key Features Unified Object Reference: The ActorInstanceHandle provides a way to reference either a full actor or a lightweight instance using a single handle, simplifying the code needed to interact with these objects.

Performance Optimization: By allowing references to lightweight instances, this handle enables developers to optimize their game's performance by reducing the overhead associated with managing large numbers of traditional actors.

Flexibility: The handle allows for flexibility in how objects are implemented and managed within the game world, supporting a mix of heavyweight and lightweight objects as needed based on the game's requirements.

Usage While the specific implementation details and usage of ActorInstanceHandle may vary based on the game's architecture and the version of Unreal Engine being used, the concept behind this handle remains consistent: to provide a flexible and efficient way to reference and manage objects in the game world.

Developers might use ActorInstanceHandle in systems where objects can be dynamically switched between being represented as full actors or as lightweight instances, depending on the current needs for performance and functionality. For example, distant objects in a large open-world game might be represented as lightweight instances to save resources, but become full actors when the player approaches them to interact.

87. unreal.ActorLayer

The unreal.ActorLayer class in Unreal Engine is designed to facilitate the organization and management of actors within the game world by grouping them into layers. This feature is particularly useful in large projects with complex scenes, allowing developers and level designers to easily manage visibility, selection, and other properties for groups of actors based on their assigned layer.

Key Feature: Name (Name): The primary property of the ActorLayer is its name, which acts as a unique identifier for the layer. This name is used to assign actors to the layer and to reference the layer within the Unreal Editor and through scripts or blueprints. By using meaningful names for layers, users can maintain a well-organized project structure, making it easier to manage scene complexity and actor interactions. Usage: Actor layers can be used for a variety of purposes, including:

Level Design: Organizing static scenery objects separate from interactive or dynamic objects. Performance Optimization: Quickly enabling or disabling groups of actors based on the player's location or other conditions. Editor Workflow: Improving the efficiency of level designers and artists by allowing them to focus on specific aspects of the scene. Here’s a conceptual example of how ActorLayer might be used within Unreal Engine scripts or blueprints:

# Example Python code to demonstrate referencing an ActorLayer

# Creating a new ActorLayer with a specific name
my_layer = unreal.ActorLayer(name="InteractiveObjects")

# Assuming there's a way to assign an actor to a data layer programmatically
# This might involve editor scripting or blueprint logic, depending on the context
actor.assign_to_layer(my_layer)

# Later, you might want to query all actors within a specific layer to perform operations
# such as hiding all actors not critical to gameplay for a performance boost in a certain game mode
actors_in_layer = unreal.EditorLevelLibrary.get_actors_in_layer(my_layer)
for actor in actors_in_layer:
    actor.set_visibility(False, True)  # Example operation: Hide the actor

88. unreal.ActorPerceptionBlueprintInfo

The unreal.ActorPerceptionBlueprintInfo struct in Unreal Engine is a part of the AI Module, specifically related to the AI Perception system. This system is designed to enable AI characters (NPCs) to perceive the world around them, including other actors, through various senses like sight, sound, and smell. The ActorPerceptionBlueprintInfo struct provides information about a particular actor that has been perceived by an AI character, including the stimuli that have been sensed and whether the perceived actor is considered hostile.

Properties: is_hostile (bool): This property indicates whether the perceived actor is considered hostile to the perceiving AI. This can affect the AI's behavior towards the actor, such as choosing to attack, flee, or ignore.

last_sensed_stimuli (Array(AIStimulus)): An array of AIStimulus objects representing the latest sensory stimuli that have been received from the perceived actor. Each AIStimulus contains information about the type of stimulus (e.g., sound, sight), its strength, the location from which it originated, and when it was last sensed.

target (Actor): A reference to the Actor that has been perceived. This allows the AI to identify which actor the perception information pertains to and possibly take action based on the perceived actor's identity and behavior.

Usage: The ActorPerceptionBlueprintInfo struct is typically used in conjunction with the AI Perception system to implement complex AI behaviors based on the environment and other actors. For example, an AI character could use this information to decide to chase a player character that it perceives as hostile, investigate a noise made by a non-hostile character, or ignore actors that haven't produced any significant stimuli.

Here's a conceptual example of how this might be used in a blueprint or script:

# Example Python code - conceptual demonstration of using ActorPerceptionBlueprintInfo

# Assume an AI perception component has perceived several actors and we're processing that information
perceived_actors_info = ai_perception_component.get_perceived_actors_info()

for info in perceived_actors_info:
    if info.is_hostile:
        print(f"Hostile actor perceived: {info.target.get_name()}")
        # Example action: Prepare to attack
        ai_controller.prepare_attack(info.target)
    else:
        print(f"Non-hostile actor perceived: {info.target.get_name()}")
        # Example action: Continue patrolling or investigating
        ai_controller.continue_patrol()

89. unreal.ActorPerceptionUpdateInfo

The unreal.ActorPerceptionUpdateInfo struct in Unreal Engine is part of the AI Module, specifically used within the AI Perception system. This system enables AI characters (NPCs) to perceive the world around them, including other actors, through various senses like sight, sound, and smell. The ActorPerceptionUpdateInfo struct is used to convey information about updates to an AI's perception of a particular actor, primarily focusing on the sensory stimuli associated with that actor.

Properties: target_id (int32): This is the ID of the source of the stimulus, typically correlating to an actor in the game world. The ID is used internally to track and manage perceived actors and their stimuli.

target (Actor): This property holds a reference to the Actor associated with the stimulus. It might be null if the stimulus does not directly correlate to a specific actor (e.g., a sound made by an environmental object).

stimulus (AIStimulus): Represents the updated stimulus information that has been perceived. The AIStimulus struct contains detailed information about the nature of the stimulus, including its type (e.g., sight, sound), intensity, the location from which it originated, and additional properties such as whether the stimulus was successfully sensed and the time since it was last sensed.

Usage: The ActorPerceptionUpdateInfo struct is typically used within the AI Perception system to update AI characters about changes in their environment based on sensory input. For example, when an AI character hears a noise or sees another actor, the perception system generates an AIStimulus that describes the event. The ActorPerceptionUpdateInfo struct packages this stimulus with identification information about the source, allowing the AI to process and respond to the stimulus appropriately.

Example Use Case: Here's a simplified conceptual example demonstrating how ActorPerceptionUpdateInfo might be utilized within an AI perception update callback:

# Assume this function is called whenever the AI perception system updates its perception of actors
def on_perception_update(ai_perception_component, updated_actors_info):
    for update_info in updated_actors_info:
        stimulus = update_info.stimulus
        target_actor = update_info.target

        # Process the stimulus information
        if stimulus.type == unreal.PerceptionStimulusType.SIGHT and stimulus.was_successfully_sensed:
            print(f"AI has seen {target_actor.get_name()} at {stimulus.stimulus_location}")
            # Additional logic to respond to seeing the actor
        elif stimulus.type == unreal.PerceptionStimulusType.SOUND and stimulus.was_successfully_sensed:
            print(f"AI has heard a sound from {stimulus.stimulus_location}")
            # Additional logic to investigate the sound source

90. unreal.ActorRecordedProperty

The unreal.ActorRecordedProperty struct in Unreal Engine, specifically within the context of the Takes system (part of the Sequencer and used extensively for cinematic creation and motion capture), is designed to define properties of actors that should be recorded during a take. This struct is particularly useful for specifying which aspects of an actor's state are important to capture for playback or post-production purposes.

Properties: enabled (bool): This boolean indicates whether the property is enabled for recording. If True, the property will be recorded during a take; if False, it will be ignored. This allows for selective recording of actor properties, ensuring that only relevant data is captured, which can help manage file sizes and simplify post-production.

property_name (Name): The name of the property to be recorded. This should match the name of the property as defined in the actor's class. By specifying property names, users can fine-tune exactly what data is recorded during a take, from transform data to custom properties that control the actor's appearance or behavior.

recorder_name (Text): A read-only property that likely provides a human-readable name or description for the recorder or the purpose of recording this specific property. This can be useful for identification and organization, especially when working with multiple recorded properties or when the recordings are being reviewed by others.

Usage: While the exact usage can vary depending on the project's requirements, here's a conceptual example of how ActorRecordedProperty might be configured for recording:

# Example Python code to demonstrate conceptual use of ActorRecordedProperty

# Create an instance of ActorRecordedProperty for an actor's location
location_property = unreal.ActorRecordedProperty(property_name="Location", enabled=True)

# Assuming there's a mechanism to add this property to a recording session
# This could be part of setting up a Take Recorder source for an actor
take_recorder_source.add_recorded_property(location_property)

# Now, when a take is recorded, the actor's location will be captured
# based on the settings defined in location_property

91. unreal.ActorTickFunction

The unreal.ActorTickFunction class in Unreal Engine is a specialized tick function designed to update actors each frame or at specified intervals. This function is part of the engine's broader system for scheduling and executing updates for game objects, allowing for precise control over when and how actors are updated.

Key Properties: allow_tick_on_dedicated_server (bool): Determines whether the actor's tick function is allowed to run on a dedicated server. This is useful for gameplay logic that needs to run in server-only multiplayer scenarios.

end_tick_group (TickingGroup): Specifies the tick group in which this tick function must complete its execution. Tick groups are used to order the execution of tick functions across the engine, ensuring that dependencies between objects are respected.

start_with_tick_enabled (bool): Indicates whether the tick function should start in an enabled state. If set to true, the actor will begin ticking as soon as it is spawned or the game begins. This can be toggled off later if necessary.

tick_even_when_paused (bool): If set to true, this function will continue to execute even when the game is paused, which can be useful for UI updates or other tasks that should occur regardless of the game's pause state.

tick_group (TickingGroup): Defines the earliest tick group in which this function can begin execution. Like end_tick_group, this helps determine the actor's update order relative to other game objects.

tick_interval (float): Sets the frequency, in seconds, at which this tick function will be executed. A value of 0 or less means the actor will tick every frame. Setting a value greater than 0 can reduce the frequency of updates for performance reasons or to create specific gameplay effects.

Usage: Tick functions are central to Unreal Engine's gameplay loop, allowing developers to implement logic that needs to be checked or updated regularly. For example, an actor that represents a character might use its tick function to update movement, check for collisions, or manage health regeneration.

Here's a conceptual example of how ActorTickFunction might be utilized within an actor class:

void AMyActor::Tick(float DeltaTime)
{
    Super::Tick(DeltaTime);

    // Example tick logic for a custom actor
    UpdateMovement(DeltaTime);
    CheckForInteractions();
}

92. unreal.AddAllPatchesButton

The unreal.AddAllPatchesButton struct is specifically designed to facilitate UI customization within the Unreal Engine editor, particularly for the DMX Take Recorder properties in the context of the DMXEngine plugin. This struct is a clever workaround to introduce custom UI elements, such as buttons, into the DetailsView of the DMX Take Recorder's UI, circumventing limitations posed by the existing UI customization system of the Take Recorder.

Purpose: The primary purpose of the AddAllPatchesButton struct is to enable the addition of a custom button in the DetailsView panel of the DMX Take Recorder properties. This customization is necessary because the Take Recorder's UI customization system does not easily allow for class-level UI modifications, especially when dealing with plugins like DMXEngine that extend the editor's functionality in specific ways.

How It Works: UI Customization: The struct serves as a placeholder that can be detected by the Unreal Engine editor's UI customization system. By recognizing this struct, a custom UI element—in this case, a button—can be injected into the DetailsView of the DMX Take Recorder properties.

Workaround Strategy: The approach of using an empty struct to introduce UI customization is a workaround for the Take Recorder's more rigid UI system, which tends to override class customizations. By targeting property types for customization rather than attempting to modify the class itself, developers can insert specific UI elements needed for their plugins or extensions.

Usage Scenario: In practical terms, the AddAllPatchesButton might be used to add a button that, when clicked, performs a specific action relevant to DMX Take Recorder functionality. For example, the button could be programmed to automatically add all available DMX patches to the Take Recorder session, streamlining the setup process for users working with complex lighting setups.

Technical Implementation: While the exact implementation details might vary, the general approach involves defining the AddAllPatchesButton struct within the DMXEngine plugin's codebase and then creating a custom UI customization class that looks for this struct within the DMX Take Recorder properties. When found, the customization class would then inject the actual button into the UI, along with the logic needed to perform its intended action.

93. unreal.AddNewSubobjectParams

The unreal.AddNewSubobjectParams struct in Unreal Engine is designed to encapsulate the various options and settings that can be specified when adding a new subobject to an actor or component, particularly within the context of a Blueprint. This functionality is crucial for dynamically extending the behavior and structure of objects within the game world, allowing for a more modular and flexible design approach.

Properties: blueprint_context (Blueprint): A reference to the Blueprint context in which this subobject is being added. This is important for ensuring that the subobject is properly integrated within the Blueprint's structure and for managing Blueprint-specific behaviors and modifications.

conform_transform_to_parent (bool): Determines whether the new subobject should conform its transform to its parent's transform upon creation. This is useful for ensuring that components are correctly positioned and oriented relative to their parent objects.

new_class (type(Class)): Specifies the class type of the new subobject to be added. This determines what kind of component or object is being created and added to the parent object.

parent_handle (SubobjectDataHandle): A handle to the parent object to which the new subobject will be added. This handle is used to identify the parent object within the engine's internal systems.

skip_mark_blueprint_modified (bool): An optional flag that, if set to true, prevents the Blueprint from being marked as modified as a result of adding the new subobject. This can be useful in scenarios where the modification state is being managed externally or when multiple changes are being batched together.

Example Scenario: Imagine a scenario where a developer wants to add a custom sensor component to an actor within a Blueprint, conforming the sensor's transform to the actor's transform, and without marking the Blueprint as modified immediately:

# Assuming custom_sensor_class is a reference to the custom sensor component class
# and actor_blueprint is the Blueprint to which the sensor is being added

# Configure the parameters for adding the new subobject
params = unreal.AddNewSubobjectParams(
    blueprint_context=actor_blueprint,
    new_class=custom_sensor_class,
    conform_transform_to_parent=True,
    skip_mark_blueprint_modified=True
)

# Add the new sensor component to the actor
new_sensor_handle = unreal.SubobjectDataSubsystem.add_new_subobject(params)

94. unreal.AdvanceConversationRequest

The unreal.AdvanceConversationRequest struct in Unreal Engine is part of the Common Conversation system, a framework designed to facilitate the creation and management of dialogue and conversation systems in games. This struct is specifically used to request the advancement of a conversation, typically after a player has made a choice or when the conversation should proceed to the next node based on game logic.

Properties: choice (ConversationChoiceReference): This property holds a reference to the player's choice or the specific conversation node to which the conversation should advance. The ConversationChoiceReference can refer to either a direct node in the conversation tree or a more complex choice that involves branching logic.

user_parameters (Array(ConversationNodeParameterPair)): An array of ConversationNodeParameterPair items, which are used to pass additional data or parameters into the conversation system. This could be used to dynamically alter the flow or content of the conversation based on game state, character attributes, or previous player choices. As of the note in the description, this feature is planned but not currently supported.

Example Scenario: Imagine a dialogue system where a player is given a choice between two responses during a conversation with an NPC. The player's choice could influence the direction of the conversation, lead to different outcomes, or unlock additional dialogue options based on the game's narrative logic.

# Pseudocode - Unreal Engine does not directly support Python for gameplay scripting

# Assume `conversation_system` is an instance of the game's conversation management system
# and `player_choice` is the choice made by the player, captured from the UI

# Create an AdvanceConversationRequest to advance the conversation based on the player's choice
advance_request = unreal.AdvanceConversationRequest(choice=player_choice)

# Send the request to the conversation system to process and advance the conversation
conversation_system.advance_conversation(advance_request)

95. unreal.AgentDebugVisualization

The unreal.AgentDebugVisualization struct is part of the MassGameplay plugin in Unreal Engine, specifically within the MassGameplayDebug module. It is designed to facilitate debugging of agents within the Mass AI system by providing customizable visual representations. This struct is a valuable tool for developers working with large-scale AI simulations, as it allows for the visual inspection of agent states and behaviors in the game world.

Properties: material_override (MaterialInterface): Allows for the specification of a custom material to be applied to the agent's visual representation during debugging. This can be used to color-code agents based on their state, faction, or any other relevant criteria.

mesh (StaticMesh): Specifies a static mesh to be used as the visual representation of the agent during debugging. This can help in distinguishing different types of agents or simply providing a more contextually appropriate visual cue for the agent's role.

visual_far_cull_distance (uint32): This property allows developers to set a custom far cull distance for the agent's visual representation, overriding the default value. It defines the maximum distance at which the agent's debug visualization will be rendered, helping to manage performance in dense simulations.

visual_near_cull_distance (uint32): Similar to visual_far_cull_distance, this property sets a custom near cull distance for the agent's debug visualization. It determines the minimum distance at which the agent's visual representation begins to render, allowing for finer control over the visibility of agents in the debugging view.

wire_shape (MassEntityDebugShape): In cases where a static mesh is not set, this property defines a wireframe shape to be used for debug drawing the agent via the Gameplay Debugger. This provides a lightweight, easily customizable way to visually represent agents without the need for specific mesh assets.

Usage: AgentDebugVisualization is utilized in debugging scenarios where developers need to visually distinguish between different types of agents or inspect the behavior of agents within a simulation. By customizing the visual representation of agents, developers can more easily identify issues or verify that agents are behaving as expected.

For example, in a game with a complex ecosystem of wildlife, different AgentDebugVisualization settings could be used to represent predators, prey, and neutral creatures with different meshes or colors. This allows developers to quickly assess the distribution and behavior of various entities in the simulation.

Implementation: While AgentDebugVisualization is defined within the C++ source of the MassGameplay plugin, it would typically be accessed and configured either through C++ code or via Unreal Engine's data table system, thanks to its inheritance from TableRowBase. Developers can create a data table to define different visualization settings for various agent types and then reference these settings within their AI debugging workflows.

// Example of setting up an AgentDebugVisualization in C++

UAgentDebugVisualization* DebugVisualization = NewObject<UAgentDebugVisualization>(this);
DebugVisualization->Mesh = MyAgentMesh;
DebugVisualization->MaterialOverride = MyAgentMaterial;
DebugVisualization->VisualFarCullDistance = 10000;
DebugVisualization->VisualNearCullDistance = 100;
DebugVisualization->WireShape = MassEntityDebugShape::Cube;

96. unreal.AIDamageEvent

The unreal.AIDamageEvent struct in Unreal Engine is used within the AI Module, specifically with the AI Perception System, to represent and communicate information about damage events to AI characters. This struct allows AI systems to understand when damage has occurred, who was damaged, who caused the damage, and other relevant spatial information. It's essential for developing AI behaviors that respond to combat situations, such as seeking cover, retaliating, or assisting allies.

Properties: amount (float): Represents the amount of damage taken by the damaged actor. This is a critical piece of information as it allows AI to gauge the severity of an attack. It's important to note that events with 0 damage are not ignored, allowing for potential uses in signaling or other gameplay mechanics where physical damage is not inflicted.

damaged_actor (Actor): A reference to the actor that received damage. This allows the AI to identify who in the game world has been affected by the event.

hit_location (Vector): Specifies the location where the damage occurred. This could be used for AI to focus attention or move towards/away from the point of impact. If not explicitly set, the system will default to using the damaged actor's location.

instigator (Actor): The actor responsible for causing the damage. This can be None if the source of damage is not another actor, such as environmental hazards. Identifying the instigator is crucial for AI decisions regarding targeting or avoiding enemies.

location (Vector): This represents a general location for the event, which is treated as the perceived location for AI sensing. If not set, it defaults to hit_location, and if that's also unset, it falls back to the damaged_actor's location. This property provides flexibility in how the AI perceives the origin of the damage.

tag (Name): An optional identifier for the damage event. Tags can be used to categorize or differentiate damage types (e.g., "Explosion", "Bullet") for more nuanced AI responses.

Usage: The AIDamageEvent struct can be used to inform AI characters about damage events in the game world. For example, when a player attacks an enemy NPC, an AIDamageEvent could be generated and processed by the AI Perception System, triggering the NPC to react accordingly, such as taking cover or returning fire.

97. unreal.AIDynamicParam

The unreal.AIDynamicParam struct in Unreal Engine is designed for use within the AI and Environment Query System (EQS), facilitating dynamic parameterization of queries based on runtime conditions. This flexibility allows AI behaviors to adapt to changing game states, making AI more responsive and intelligent.

Properties: bb_key (BlackboardKeySelector): A selector for a key in the AI's Blackboard, which can be used to dynamically source the parameter's value at runtime. This is particularly useful for AI that relies on Blackboard-driven behavior trees, allowing EQS queries to integrate seamlessly with the broader AI decision-making process.

param_name (Name): The name identifier for the parameter. This is used within EQS queries to reference the dynamic parameter, ensuring that the correct data is applied to the query at runtime.

param_type (AIParamType): Indicates the type of the parameter (e.g., Float, Int, Bool), defining how the value is interpreted within the context of the EQS query. This type must match the expected type within the query where the parameter is used.

value (float): The default or static value for the parameter. This value can be overridden at runtime by the value sourced from the specified Blackboard key if one is provided.

Usage: AIDynamicParam is typically used in scenarios where an AI's behavior or decisions need to adapt based on the game state, such as changing target priorities, adjusting search areas, or modifying thresholds for actions. For example, an AI character might use an EQS query to find cover points, with a dynamic parameter specifying the maximum acceptable distance to a cover point based on the character's current health level.

Here's a conceptual example of how AIDynamicParam might be configured for such a use case:

// Example of setting up an AIDynamicParam in C++

AIDynamicParam DistanceParam;
DistanceParam.param_name = FName(TEXT("MaxCoverDistance"));
DistanceParam.param_type = AIParamType::FLOAT;
DistanceParam.value = 1000.0f; // Default distance
DistanceParam.bb_key = BlackboardKeySelector(FName(TEXT("DynamicCoverDistance")));

// Assuming this parameter is then applied to an EQS query within the AI's behavior

98. unreal.AimTarget

The unreal.AimTarget struct in Unreal Engine, particularly within the context of the Control Rig plugin, is designed to define a target for aim constraints. Aim constraints are commonly used in rigging and animation to orient parts of a character or object towards a specific target, ensuring that the aim or look direction follows the target dynamically.

Properties: align_vector (Vector): This property specifies the vector in the target's space to which the aim vector will be aligned. In the context of orienting to a target, this vector defines how the aiming entity should orient itself relative to the target. For example, if aiming with a character's head, the align vector could specify which direction the head's forward vector should point.

transform (Transform): Defines the transform of the aim target itself. This includes the target's position, rotation, and scale in the world or parent space. The aiming entity will use this transform to determine how to orient itself towards the target.

weight (float): Specifies the weight of the target, which can influence how strongly the aim constraint affects the aiming entity. A weight of 1.0 means the aim is fully influenced by this target, while a weight of 0 means it has no influence. This allows for blending between multiple aim targets or smoothly transitioning the influence of the target on the aiming entity.

Example: Consider a scenario where you're setting up a control rig for a character's head to aim towards a point of interest. You could configure an AimTarget to specify the point of interest's transform, use a forward vector as the align vector to indicate which direction the head should consider as "forward" towards the target, and set the weight to control the influence of this aiming behavior.

// Pseudocode example for setting up an AimTarget within a Control Rig

unreal.AimTarget pointOfInterest;
pointOfInterest.align_vector = unreal.Vector(0, 0, 1); // Assuming Z is forward
pointOfInterest.transform = unreal.Transform(targetLocation, targetRotation, unreal.Vector(1, 1, 1));
pointOfInterest.weight = 1.0; // Full influence

// This AimTarget would then be used within the rig logic to orient the head towards

99. unreal.AINoiseEvent

The unreal.AINoiseEvent struct in Unreal Engine is part of the AI Module, specifically used within the AI Perception system to represent noise events that AI can detect. This struct allows developers to simulate environmental sounds or actions that generate noise, enabling AI characters to respond to these sounds based on their loudness, location, and the identity of the instigator. It is a critical component for creating immersive and responsive AI behaviors that can hear and react to the player and other NPCs in the game world.

Properties: instigator (Actor): The actor responsible for creating the noise. This can be any actor in the game, including the player, NPCs, or even non-character actors like a door slamming or a gun being fired.

loudness (float): A modifier for the noise's loudness. This value can influence how far the noise travels and how likely it is to be heard by AI. If max_range is set, loudness acts as a multiplier to that range.

max_range (float): Defines the maximum distance at which the noise can be heard. This value is multiplied by the loudness modifier to calculate the final range. A value of 0 indicates no limit to the noise's range, though AI listeners will still have their own hearing limits.

noise_location (Vector): Specifies the location where the noise originates. If not set, the location of the instigator will be used by default. This allows for noise to be attributed to a specific point in space, regardless of the instigator's current position.

tag (Name): An optional identifier for categorizing the noise event. Tags can be used to differentiate between types of sounds, making it easier for AI to determine the appropriate response (e.g., distinguishing between a harmless noise and a potential threat).

Usage: Noise events are typically used to alert AI characters to potential threats or points of interest in the environment. For example, when the player fires a weapon without a silencer, an AINoiseEvent can be generated to simulate the sound of the gunshot. AI characters with hearing capabilities can then detect this event and respond accordingly, such as investigating the noise source or entering combat.

Here's a conceptual example of how to create and register an AINoiseEvent:

// Example C++ code to generate a noise event

AActor* NoiseInstigator = GetPlayerCharacter(); // Assuming this gets the player character
FVector NoiseLocation = NoiseInstigator->GetActorLocation();
float NoiseLoudness = 1.0f;
float NoiseMaxRange = 1000.0f;
FName NoiseTag = FName(TEXT("Gunshot"));

// Create the noise event struct
AINoiseEvent NoiseEvent;
NoiseEvent.Instigator = NoiseInstigator;
NoiseEvent.NoiseLocation = NoiseLocation;
NoiseEvent.Loudness = NoiseLoudness;
NoiseEvent.MaxRange = NoiseMaxRange;
NoiseEvent.Tag = NoiseTag;

// Assuming there's an AI Perception System in place that can process this noise event
UAIPerceptionSystem::ReportNoiseEvent(GetWorld(), NoiseLocation, Loudness, NoiseInstigator, MaxRange

100. unreal.AIRequestID

The unreal.AIRequestID in Unreal Engine is a simple, yet crucial component of the AI Module, designed to uniquely identify AI requests, such as pathfinding operations, task requests, or any other asynchronous AI activities that require tracking and management. This identification system is instrumental in managing the lifecycle of these requests, including initiating, tracking progress, and handling the completion or cancellation of AI operations.

Key Characteristics: The AIRequestID does not have explicitly listed properties in the given description, but it typically contains at least one integral value serving as the unique identifier for an AI request. This ID facilitates the coordination between AI systems and the tasks they perform, ensuring that responses or updates can be accurately matched to their corresponding requests.

Example Scenario: Imagine an AI character in a game needs to navigate to a point of interest. The game's AI system requests a path from the current location to the destination through the pathfinding system. The pathfinding operation is asynchronous, as calculating the path can take time, especially in complex environments.

cpp Copy code FAIRequestID RequestID = UNavigationSystemV1::RequestPathToLocation(...parameters...); Later, the pathfinding system completes the path calculation and notifies the AI system that the requested path is ready. The notification includes the AIRequestID originally provided, allowing the AI system to confirm that the path received corresponds to the correct request, especially in cases where multiple pathfinding requests might be in progress simultaneously.

void OnPathReady(FAIRequestID CompletedRequestID, FNavPathSharedPtr Path)
{
    if (CompletedRequestID == RequestID)
    {
        // The path is confirmed to be the response to our specific request.
        // Proceed with using the path for AI character navigation.
    }
}

101. unreal.AISenseAffiliationFilter

The unreal.AISenseAffiliationFilter struct in Unreal Engine is designed to configure how AI perceives other actors based on their affiliations—namely, whether they are enemies, neutrals, or friendlies. This struct is primarily used in conjunction with the AI Perception system, which allows AI characters to detect and respond to other actors in the game world based on various senses (sight, sound, etc.).

Properties: detect_enemies (bool): If set to true, the AI will be configured to detect actors that are considered enemies. This is crucial for AI behaviors involving combat or avoidance strategies.

detect_friendlies (bool): When enabled by setting it to true, the AI will detect actors that are considered friendlies. This can be important for behaviors such as following or supporting allied characters.

detect_neutrals (bool): If this is set to true, the AI will detect neutral actors—those that are neither friends nor enemies. Detecting neutrals can be useful for behaviors involving general awareness of the environment or for interactions with characters that have not yet been classified as friend or foe.

Example Scenario: Consider an AI character that needs to be aware of enemies and neutrals but not friendlies, perhaps because it is a guard that should react to intruders and other suspicious characters without being distracted by allies:

UAIPerceptionComponent* PerceptionComponent = ...; // Assume this is already initialized

FAISenseAffiliationFilter Filter;
Filter.detect_enemies = true;
Filter.detect_neutrals = true;
Filter.detect_friendlies = false;

PerceptionComponent->SetSenseAffiliationFilter(Filter);

102. unreal.AIStimulus

The unreal.AIStimulus struct in Unreal Engine is a critical component of the AI Perception System, designed to represent sensory data perceived by AI characters. This system enables AI to detect and respond to various stimuli in the environment, such as sounds, sights, or other sensory inputs, facilitating more immersive and intelligent NPC behaviors.

Properties: age (float): Represents how long ago (in seconds) the stimulus was registered. This allows AI systems to consider the freshness of the stimulus when deciding how to react.

expiration_age (float): Specifies the age (in seconds) at which the stimulus is considered expired and no longer relevant to perception processing. This helps in managing the lifecycle of perceived stimuli.

receiver_location (Vector): The location of the AI character that received the stimulus. This is important for calculating the distance to the stimulus source and potentially for determining the direction from which the stimulus originated.

stimulus_location (Vector): The point in the world where the stimulus originated. Accurate location data is crucial for AI navigation and interaction decisions, such as moving towards the source of a sound.

strength (float): A value representing the intensity or significance of the stimulus. This can be used by AI to prioritize responses to multiple stimuli or to gauge the threat level of a perceived entity.

successfully_sensed (bool): Indicates whether the stimulus was successfully sensed by the AI. This can be used to filter out unsuccessful attempts to perceive stimuli, ensuring that only actionable sensory data is processed.

tag (Name): An optional identifier that can be used to categorize or further describe the stimulus. Tags offer a way to implement specialized responses to different types of stimuli, such as distinguishing between friend and foe.

Example Scenario: An AI guard character is patrolling when a player character knocks over a vase, creating a noise. The game system generates an AIStimulus for the noise, including its location, strength, and the time it occurred. The AI Perception System processes this stimulus, and if the guard successfully senses it (based on the guard's sensory configuration and the properties of the stimulus), the guard can then react appropriately, such as investigating the noise source.

// Pseudocode example of generating a noise stimulus
FVector NoiseLocation = GetActorLocation(); // Location of the noise source
float NoiseStrength = 1.0f; // The loudness of the noise
FName NoiseTag = FName(TEXT("DistractingNoise")); // Optional tag to identify the stimulus type

AIStimulus NoiseStimulus;
NoiseStimulus.stimulus_location = NoiseLocation;
NoiseStimulus.strength = NoiseStrength;
NoiseStimulus.tag = NoiseTag;

// Assuming a function to report the stimulus to the AI Perception System
ReportStimulus(NoiseStimulus);

103. unreal.AITestSpawnInfo

The unreal.AITestSpawnInfo struct in Unreal Engine is a versatile tool used within the context of automated AI testing, particularly in conjunction with the AFunctionalAITest framework. This struct allows for the specification of detailed spawn information for AI entities in a test environment, enabling developers to set up complex scenarios for testing AI behavior under controlled conditions.

Properties: behavior_tree (BehaviorTree): Specifies a behavior tree to be applied to the spawned AI. This allows for testing of specific AI logic flows and decision-making processes in a controlled environment.

controller_class (type(Class)): The class used to override the default controller class for the pawn. If None, the pawn's default controller class is used. This is useful for testing AI with custom controller logic.

number_to_spawn (int32): Indicates the number of AI entities to spawn for the test. This can be used to test how AI behaves in scenarios ranging from solitary entities to large groups.

pawn_class (type(Class)): Determines the type of AI pawn to be spawned. This allows for testing across different AI characters or entities within the game.

pre_spawn_delay (float): Specifies a delay before the first spawn attempt is made. This can be used to synchronize AI spawning with other elements of the test setup.

spawn_delay (float): The delay between consecutive spawn attempts, allowing for staggered spawning of AI entities.

spawn_location (Actor): Designates the location where AI entities should be spawned. This is critical for setting up test scenarios that depend on specific spatial arrangements.

team_id (GenericTeamId): Identifies the team ID for the spawned AI, useful for testing scenarios involving team-based behaviors or interactions between different AI factions.

Example Scenario: Imagine a test scenario where a developer wants to evaluate the performance of a new navigation behavior tree in a crowded environment. The developer could set up an AITestSpawnInfo instance to spawn several AI entities near key navigation challenges in the level, each configured with the new behavior tree. By observing the AI's performance, the developer can identify potential issues or areas for improvement in the behavior tree's logic.

104. unreal.AITestSpawnInfoBase

The unreal.AITestSpawnInfoBase struct is a foundational element within Unreal Engine's functional AI testing framework, specifically designed to define the basic parameters for spawning AI entities during automated tests. This struct allows developers to specify where and when AI entities should be spawned in the game world, facilitating the creation of diverse testing scenarios to evaluate AI behaviors and performance.

Properties: number_to_spawn (int32): Determines the total number of AI entities to spawn. This allows for testing scenarios with varying degrees of complexity, from individual AI entities to large groups, providing insights into how AI performs under different conditions.

pre_spawn_delay (float): Specifies a delay (in seconds) before attempting the first spawn. This can be used to synchronize AI spawning with other test setup steps or to delay AI introduction into the test environment until certain conditions are met.

spawn_delay (float): The delay (in seconds) between consecutive spawn attempts. This parameter allows for staggered spawning of AI entities, which can be useful for observing AI interactions over time or for gradually increasing the complexity of the test environment.

spawn_location (Actor): Indicates the location where AI entities should be spawned. This is crucial for setting up test scenarios that depend on AI entities being placed in specific parts of the game world, whether for navigation tests, interaction with the environment, or engagement with the player or other AI.

Example Scenario: Imagine conducting an AI navigation test where the goal is to assess how well AI entities navigate from various spawn points to a target location under different conditions (e.g., varying numbers of obstacles, different AI group sizes). A developer could define multiple AITestSpawnInfoBase instances, each with different spawn_location and number_to_spawn values, and then initiate the test to systematically evaluate navigation performance across these varied scenarios.

105. unreal.AITestSpawnSet

The unreal.AITestSpawnSet struct in Unreal Engine is a vital component of the AI testing framework, specifically designed for use in AFunctionalAITest tests. This struct allows developers to define sets of AI entities to spawn as part of automated tests, facilitating comprehensive evaluation of AI behaviors and interactions within controlled scenarios.

Properties: enabled (bool): Indicates whether the spawn set is active for the test. This allows developers to easily enable or disable specific spawn sets without removing them from the test configuration, providing flexibility in test setup and execution.

fallback_spawn_location (Actor): Specifies a fallback location used for spawning if individual spawn info entries do not define one. This ensures that all AI entities have a valid spawn point, even if specific locations are not set for each one.

name (Name): A name given to the spawn set to help identify it, particularly useful in complex tests with multiple spawn sets. Naming facilitates easier debugging and test configuration management.

spawn_info_container (Array(AITestSpawnInfo)): Contains the specific spawn information for what to spawn, including details such as spawn location, number of entities to spawn, spawn delay, and the classes of the AI entities and their controllers. This array is the core of the spawn set, defining the actual content and parameters of the test scenario.

Example Scenario: Imagine a scenario where a developer wants to test how an AI reacts to being outnumbered by enemies. The developer could create an AITestSpawnSet with a name indicating the test's purpose (e.g., "OutnumberedTest"), set it to enabled, and populate the spawn_info_container with AITestSpawnInfo instances that define the enemy AI entities to spawn, their spawn locations, and any relevant behavior trees or controller classes. The fallback_spawn_location could be set to ensure all AI entities have a default location if specific ones are not defined.

106. unreal.AITestSpawnSetBase

The unreal.AITestSpawnSetBase struct serves as the foundational structure for defining AI Test Spawn Sets in the context of AFunctionalAITestBase tests within Unreal Engine. This base struct provides a general framework for configuring how and where AI entities are spawned during automated functional AI testing. By using this struct, developers can create comprehensive and flexible test setups to evaluate AI behaviors under various conditions.

Properties: enabled (bool): Indicates whether the spawn set is active and should be used during the test. This allows test designers to easily enable or disable specific sets of spawns without having to remove them entirely from the test configuration.

fallback_spawn_location (Actor): Specifies a default spawn location to be used in case specific spawn information entries within the set do not define their own locations. This ensures that all AI entities designated for spawning by the set have a valid location, facilitating smoother test execution and setup.

name (Name): Provides a means to name the spawn set, aiding in identification and organization, especially in complex tests that involve multiple spawn sets. Naming can be particularly helpful for debugging purposes and for understanding the test setup at a glance.

Example Scenario: Consider a scenario where a developer is testing AI navigation behaviors in a complex urban environment. The developer could define several AITestSpawnSetBase instances, each configured with a unique name and fallback spawn location corresponding to different areas of the map. Depending on the specific focus of each test (e.g., navigation under fire, stealth approaches, group movements), the developer could enable or disable specific spawn sets, ensuring that the AI entities are spawned in the most relevant locations for each test case.

107. unreal.AjaMediaTimecodeConfiguration

The unreal.AjaMediaTimecodeConfiguration struct in Unreal Engine is part of the AJA Media Plugin, which provides support for AJA video hardware devices. This struct is specifically designed to configure how timecode information is extracted from video signals received through AJA hardware. It allows users to specify the source of the video signal and the format of the timecode being read, facilitating synchronization and timecoding in live production environments, virtual sets, and other scenarios where precise timing information is critical.

Properties: media_configuration (MediaIOConfiguration): Defines the source of the video signal from which the timecode will be read. This includes the device, video input, and other relevant settings that identify the specific AJA hardware and input channel being used.

timecode_format (MediaIOTimecodeFormat): Specifies the format of the timecode to be read from the video signal. This setting ensures that the timecode is interpreted correctly according to the standard or format being used (e.g., LTC, VITC) and is crucial for accurate timecode tracking and management.

Example Scenario: Imagine a virtual production setup where Unreal Engine is used to render real-time backgrounds for live actors being filmed on a green screen. The camera feeds are captured through AJA video hardware, and it's crucial to synchronize the Unreal Engine rendered output with the live camera feeds. By configuring the AjaMediaTimecodeConfiguration with the appropriate media_configuration and timecode_format, the production team can ensure that the timecode from the camera feeds is accurately read and used for synchronization, enabling seamless integration of live-action footage with the virtual environment.

108. unreal.AjaMediaTimecodeReference

The unreal.AjaMediaTimecodeReference struct in Unreal Engine is part of the AJA Media Plugin, which facilitates integration with AJA video hardware devices. This struct is designed to configure the retrieval of timecode information from an AJA device, specifically focusing on the settings related to Linear Time Code (LTC) obtained through the device's reference input.

Properties: device (MediaIODevice): Specifies the AJA device from which the LTC timecode is to be read. This property identifies the specific hardware device by its connection and configuration details, ensuring that the timecode is read from the correct source.

ltc_frame_rate (FrameRate): Defines the frame rate of the LTC signal obtained from the reference pin of the AJA device. Accurate frame rate information is crucial for interpreting the LTC timecode correctly, as it dictates the timing and synchronization of video frames.

ltc_index (int32): Indicates the index of the LTC signal to read from the device's reference pin. This is particularly relevant when multiple LTC signals are available, allowing users to specify which particular signal should be used for timecode reference.

Example Scenario: In a live broadcast scenario, where multiple cameras are feeding into Unreal Engine for real-time graphics overlay, each camera's feed might be associated with a distinct LTC timecode for synchronization purposes. By configuring the AjaMediaTimecodeReference with the appropriate device settings and LTC frame rate, the production team can align the graphics and effects rendered by Unreal Engine with the live camera feeds, ensuring seamless integration and broadcast continuity.

109. unreal.AlphaBlend

The unreal.AlphaBlend struct in Unreal Engine is designed to manage blending operations, offering support for various blending options, including linear, cubic, and more, with the added flexibility of defining custom blending curves. This struct is commonly used in animations and other areas where a smooth transition between states or values is required.

Properties: blend_option (AlphaBlendOption): Specifies the type of blending operation to be used. The AlphaBlendOption enum includes various predefined blending methods such as Linear, Cubic, Quadratic In/Out, and Custom, among others. Each option controls how the blend transitions from the start to the end value over time, affecting the smoothness and dynamics of the transition.

blend_time (float): The duration of the blend, in seconds. This defines how long it will take to transition from the starting state to the ending state. A shorter blend time results in a faster transition, while a longer blend time leads to a smoother, more gradual change.

custom_curve (CurveFloat): When the blend_option is set to Custom, this property allows the specification of a CurveFloat object that defines the custom blending curve. The curve dictates how the alpha value changes over time, providing precise control over the blending operation's progression. This is particularly useful for achieving specific transition effects that are not covered by the standard blending options.

Example Scenario: In a character animation setup, you might use unreal.AlphaBlend to control the transition between a character's walking and running animations based on the character's speed. By adjusting the blend_option and blend_time, you can fine-tune how quickly and smoothly the character transitions from walking to running as the speed increases.

unreal.AlphaBlend AnimationBlend;
AnimationBlend.blend_option = unreal.AlphaBlendOption.Cubic;
AnimationBlend.blend_time = 0.5f; // Transition over 0.5 seconds
// Optionally set a custom curve if a more complex transition is needed

110. unreal.AlphaBlendArgs

The unreal.AlphaBlendArgs struct in Unreal Engine is designed to provide a standardized way to define the parameters for creating an AlphaBlend object. This struct simplifies the process of specifying how blending should be performed, particularly in animations and other transitional effects, by encapsulating the essential arguments needed for an alpha blend operation.

Properties: blend_option (AlphaBlendOption): Determines the type of blending curve to be used. This could be linear, cubic, or another predefined curve type, each offering a different transition characteristic. The AlphaBlendOption enumeration includes options like Linear, Cubic, Quadratic In, Quadratic Out, etc., as well as a Custom option for user-defined curves.

blend_time (float): Specifies the duration over which the blend occurs, in seconds. This value controls how quickly or slowly the blending transition takes place, allowing for fine-tuning of the animation or effect timing.

custom_curve (CurveFloat): If the blend_option is set to Custom, this property allows for the specification of a custom blending curve via a CurveFloat object. This curve explicitly defines how the blend should progress over time, offering maximum control over the transition effect.

Example Scenario: Consider a scenario where you have a character animation system, and you want to smoothly transition between idle and running states based on the character's speed. You decide to use a cubic blend over 0.3 seconds for a smooth acceleration effect:

// Example instantiation of AlphaBlendArgs for a cubic transition
unreal.AlphaBlendArgs BlendArgs;
BlendArgs.blend_option = unreal.AlphaBlendOption.Cubic;
BlendArgs.blend_time = 0.3f;
// No custom curve is needed for a cubic blend

111. unreal.AnalogInputEvent

The unreal.AnalogInputEvent class in Unreal Engine is an extension of the unreal.KeyEvent class, specifically designed to handle analog inputs. Analog inputs differ from digital inputs in that they provide a range of values instead of binary states (pressed or not pressed), which is typical for keyboard and mouse buttons. Analog inputs are common in game controllers, where joysticks and triggers can report a wide range of positions or pressures, allowing for more nuanced control in games.

Key Features and Usage: Analog Values: The primary distinction of AnalogInputEvent from its parent KeyEvent is its ability to handle analog data. This is particularly useful for capturing the precise position of a joystick or the pressure applied to a trigger on a game controller.

Gameplay Application: Analog input is crucial for gameplay mechanics that require variable input intensity or precision movement. For example, the pressure applied to a trigger might control the speed at which a vehicle moves or the force with which a character jumps.

Event Handling: In Unreal Engine, AnalogInputEvent can be used within input handling systems to differentiate between analog and digital input sources. Event handlers specific to analog inputs can interpret the analog values (usually ranging from 0 to 1 or -1 to 1) and apply them to game logic accordingly.

Example Scenario: Consider a racing game where the acceleration of a car is controlled by the pressure applied to a game controller's trigger. An AnalogInputEvent can be used to capture the trigger's position:

void MyCharacter::OnTriggerPress(const FAnalogInputEvent& Event)
{
    if (Event.GetKey() == EKeys::Gamepad_RightTrigger)
    {
        float TriggerPressure = Event.GetAnalogValue();
        // Apply the trigger pressure to control the car's acceleration
        MyCar->SetAcceleration(TriggerPressure);
    }
}

112. unreal.AnalyticsEventAttr

The unreal.AnalyticsEventAttr struct in Unreal Engine is designed for use with the Analytics Blueprint Library, enabling developers and designers to easily send analytics events from within Blueprints. This struct acts as a simple, blueprint-accessible version of an analytics event attribute, comprising a name-value pair that represents a single piece of data or attribute to be included in an analytics event.

Properties: name (str): The name of the attribute. This serves as the identifier for the piece of data being recorded. It should be descriptive and consistent across similar events to ensure analytics data is meaningful and easily aggregated.

value (str): The value of the attribute. This is the data or measurement associated with the name field. The value is stored as a string, but it can represent numerical data, boolean values (as "true" or "false"), or any other textual data relevant to the event being tracked.

Example Scenario: Consider a game where you want to track player interactions with a new feature, such as a puzzle mechanic. You might send an analytics event each time a player attempts a puzzle, including attributes for the puzzle ID, whether the attempt was successful, and how long the attempt took.


// Create analytics attributes
AnalyticsEventAttr PuzzleIDAttr;
PuzzleIDAttr.name = "PuzzleID";
PuzzleIDAttr.value = "Puzzle_123";

AnalyticsEventAttr SuccessAttr;
SuccessAttr.name = "Success";
SuccessAttr.value = "true";

AnalyticsEventAttr TimeTakenAttr;
TimeTakenAttr.name = "TimeTaken";
TimeTakenAttr.value = "45"; // Assume 45 seconds

// Send an analytics event with these attributes
RecordAnalyticsEventWithAttributes("PuzzleAttempt", [PuzzleIDAttr, SuccessAttr, TimeTakenAttr]);

ue5_python_api's People

Contributors

manahil10 avatar haris-khan1596 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.