unreal.PCGAttributePropertySelectorBlueprintHelpers¶
- class unreal.PCGAttributePropertySelectorBlueprintHelpers(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
BlueprintFunctionLibraryHelper class to allow the BP to call the custom setters and getters on FPCGAttributePropertySelector.
C++ Source:
Plugin: PCG
Module: PCG
File: PCGAttributePropertySelector.h
- classmethod copy_and_fix_last(selector, data) PCGAttributePropertyInputSelector¶
Copy and Fix Last
- Parameters:
selector (PCGAttributePropertyInputSelector)
data (PCGData)
- Return type:
- classmethod copy_and_fix_source(output_selector, input_selector, optional_data=None) PCGAttributePropertyOutputSelector¶
Copy and Fix Source
- Parameters:
output_selector (PCGAttributePropertyOutputSelector)
input_selector (PCGAttributePropertyInputSelector)
optional_data (PCGData)
- Return type:
- classmethod get_attribute_name(selector) Name¶
Get Attribute Name
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_domain_name(selector) Name¶
Get Domain Name
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_extra_names(selector) Array[str]¶
Get Extra Names
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_extra_property(selector) PCGExtraProperties¶
Get Extra Property
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_name(selector) Name¶
Get Name
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_point_property(selector) PCGPointProperties¶
Get Point Property
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_property_name(selector) Name¶
Get Property Name
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod get_selection(selector) PCGAttributePropertySelection¶
Get Selection
- Parameters:
selector (PCGAttributePropertySelector)
- Return type:
- classmethod set_attribute_name(selector, attribute_name, reset_extra_names=True) PCGAttributePropertySelector or None¶
Set Attribute Name
- Parameters:
selector (PCGAttributePropertySelector)
attribute_name (Name)
reset_extra_names (bool)
- Returns:
selector (PCGAttributePropertySelector):
- Return type:
PCGAttributePropertySelector or None
- classmethod set_domain_name(selector, domain_name, reset_extra_names=True) PCGAttributePropertySelector or None¶
Set Domain Name
- Parameters:
selector (PCGAttributePropertySelector)
domain_name (Name)
reset_extra_names (bool)
- Returns:
selector (PCGAttributePropertySelector):
- Return type:
PCGAttributePropertySelector or None
- classmethod set_extra_property(selector, extra_property, reset_extra_names=True) PCGAttributePropertySelector or None¶
Set Extra Property
- Parameters:
selector (PCGAttributePropertySelector)
extra_property (PCGExtraProperties)
reset_extra_names (bool)
- Returns:
selector (PCGAttributePropertySelector):
- Return type:
PCGAttributePropertySelector or None
- classmethod set_point_property(selector, point_property, reset_extra_names=True) PCGAttributePropertySelector or None¶
Set Point Property
- Parameters:
selector (PCGAttributePropertySelector)
point_property (PCGPointProperties)
reset_extra_names (bool)
- Returns:
selector (PCGAttributePropertySelector):
- Return type:
PCGAttributePropertySelector or None
- classmethod set_property_name(selector, property_name, reset_extra_names=True) PCGAttributePropertySelector or None¶
Set Property Name
- Parameters:
selector (PCGAttributePropertySelector)
property_name (Name)
reset_extra_names (bool)
- Returns:
selector (PCGAttributePropertySelector):
- Return type:
PCGAttributePropertySelector or None