Skip to content

Class UDiscretePointBlueprintLibrary

Class UDiscretePointBlueprintLibrary

  • Defined in File DiscretePointBlueprintLibrary.h

Inheritance Relationships

Base Type

  • public UBlueprintFunctionLibrary
class UDiscretePointBlueprintLibrary : public UBlueprintFunctionLibrary

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

Dependencies: FDiscretePoint

Blueprint oriented helper functions for creating & inspecting Discrete Point InstancedStructs.

This library provides utility functions for creating and manipulating Discrete Point instances from within Blueprints. These return TInstancedStruct<FDiscretePoint>.


Public Static Functions

SymbolDetails
Int32ToDiscretePointConverts an integer value to a discrete point.
DiscretePointToInt32Converts a discrete point to an integer value.

Int32ToDiscretePoint

static TInstancedStruct&lt;FDiscretePoint&gt;
Int32ToDiscretePoint(const int32 InValue)

Converts an integer value to a discrete point.

Parameters

InValue – [in] The integer value representing a discrete choice.

Returns:

A new discrete point instance.

#DirectionNameTypeDescription
1InValueconst int32The integer value representing a discrete choice.

Attributes: static

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

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

DiscretePointToInt32

static int32
DiscretePointToInt32(const TInstancedStruct&lt;FDiscretePoint&gt; &InDiscretePoint)

Converts a discrete point to an integer value.

Parameters

InDiscretePoint – [in] The discrete point to convert.

Returns:

The integer value from the discrete point.

#DirectionNameTypeDescription
1InDiscretePointconst TInstancedStruct&lt; FDiscretePoint &gt; &The discrete point to convert.

Attributes: static

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

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