Skip to content

Class UPointBlueprintLibrary

Class UPointBlueprintLibrary

  • Defined in File PointBlueprintLibrary.h

Inheritance Relationships

Base Type

  • public UBlueprintFunctionLibrary
class UPointBlueprintLibrary : public UBlueprintFunctionLibrary

Source: 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:


Public Static Functions

SymbolDetails
Point_TypeGets the underlying kind/type of a point.
Point_IsOfTypeCheck 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).

#DirectionNameTypeDescription
1InPointconst 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.

#DirectionNameTypeDescription
1InPointconst FInstancedStruct &The point to inspect.
2InTypeEPointTypeThe type to check against.

Attributes: static

Source: Source/Schola/Public/Common/Points/Blueprint/PointBlueprintLibrary.h

Implementation: Source/Schola/Private/Common/Points/Blueprint/PointBlueprintLibrary.cpp