Navigation
API > API/Plugins > API/Plugins/MassCommon
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 UE::RandomSequence::RandRange
(
const int32 SeqIndex, |
Helper function to return random int in specified range. | RandomSequence.h | |
float UE::RandomSequence::RandRange
(
const int32 SeqIndex, |
Helper function to return random float in specified range. | RandomSequence.h |
UE::RandomSequence::RandRange(const int32, const int32, const int32)
Description
Helper function to return random int in specified range.
| Name | UE::RandomSequence::RandRange |
| Type | function |
| Header File | /Engine/Plugins/Runtime/MassGameplay/Source/MassCommon/Public/RandomSequence.h |
| Include Path | #include "RandomSequence.h" |
namespace UE
{
namespace RandomSequence
{
int32 UE::RandomSequence::RandRange
(
const int32 SeqIndex,
const int32 InMin,
const int32 InMax
)
}
}
A random number >= Min and <= Max
UE::RandomSequence::RandRange(const int32, const float, const float)
Description
Helper function to return random float in specified range.
| Name | UE::RandomSequence::RandRange |
| Type | function |
| Header File | /Engine/Plugins/Runtime/MassGameplay/Source/MassCommon/Public/RandomSequence.h |
| Include Path | #include "RandomSequence.h" |
namespace UE
{
namespace RandomSequence
{
float UE::RandomSequence::RandRange
(
const int32 SeqIndex,
const float InMin,
const float InMax
)
}
}
A random number >= Min and <= Max