UKismetSystemLibrary::MakeLiteralInt64
#include "Kismet/KismetSystemLibrary.h"
Access: public
Specifiers: staticUFUNCTIONBlueprintPureBlueprintThreadSafe
Description
Returns the 64-bit integer passed in unchanged. Backs Blueprint's literal int64 node, used when a value exceeds the range of a regular 32-bit int pin.
Caveats & Gotchas
- • Its UFUNCTION Category hint is still "Math|Integer" in the header, the same as the 32-bit MakeLiteralInt — the Blueprint palette does not separate int64 literals into their own Integer64 group.
- • Pure pass-through with no side effects; only useful to give the Blueprint compiler a node representing an int64 constant.
Signature
static int64 MakeLiteralInt64(int64 Value) Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| Value | int64 | Value the literal 64-bit integer node should return. | — |
Return Type
int64 Example
Literal pass-through C++
int64 Value = UKismetSystemLibrary::MakeLiteralInt64(9223372036854775807LL); See Also
Tags
Version History
Introduced in: unknown
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?