Class UPointBlueprintLibrary
Class UPointBlueprintLibrary
- Defined in File PointBlueprintLibrary.h
Inheritance Relationships
Base Type
public UBlueprintFunctionLibrary
class UPointBlueprintLibrary : public UBlueprintFunctionLibrarySource: Source/Schola/Public/Common/Points/Blueprint/PointBlueprintLibrary.h
Dependencies: UBoxPointBlueprintLibrary, UDictPointBlueprintLibrary, UDiscretePointBlueprintLibrary, UMultiBinaryPointBlueprintLibrary, UMultiDiscretePointBlueprintLibrary
Blueprint oriented helper functions for inspecting Point InstancedStructs.
This library provides general utility functions for inspecting different types of Point instances from within Blueprints.
For type-specific functions (creation, conversion, etc.), see:
-
UMultiBinaryPointBlueprintLibrary for MultiBinary points
-
UDiscretePointBlueprintLibrary for Discrete points
-
UMultiDiscretePointBlueprintLibrary for MultiDiscrete points
-
UBoxPointBlueprintLibrary for Box (continuous) points
-
UDictPointBlueprintLibrary for Dictionary points
Public Static Functions
| Symbol | Details |
|---|---|
Point_Type | Gets the underlying kind/type of a point. |
Point_IsOfType | Check if a point is of a specific type. |
Point_Type
static EPointType Point_Type(const FInstancedStruct &InPoint)Gets the underlying kind/type of a point.
Parameters
InPoint – [in] The point to inspect.
Returns:
The kind of the point (Binary, Discrete, Box, or Dict).
| # | Direction | Name | Type | Description |
|---|---|---|---|---|
| 1 | — | InPoint | const FInstancedStruct & | The point to inspect. |
Attributes: static
Source: Source/Schola/Public/Common/Points/Blueprint/PointBlueprintLibrary.h
Implementation: Source/Schola/Private/Common/Points/Blueprint/PointBlueprintLibrary.cpp
Point_IsOfType
static bool Point_IsOfType(const FInstancedStruct &InPoint, EPointType InType)Check if a point is of a specific type.
Parameters
-
InPoint – [in] The point to inspect.
-
InType – [in] The type to check against.
Returns:
True if the point is of the specified type, false otherwise.
| # | Direction | Name | Type | Description |
|---|---|---|---|---|
| 1 | — | InPoint | const FInstancedStruct & | The point to inspect. |
| 2 | — | InType | EPointType | The type to check against. |
Attributes: static
Source: Source/Schola/Public/Common/Points/Blueprint/PointBlueprintLibrary.h
Implementation: Source/Schola/Private/Common/Points/Blueprint/PointBlueprintLibrary.cpp