Navigation
API > API/Plugins > API/Plugins/TextureGraph
Split array.
| Name | UTG_Expression_ArraySplit |
| Type | class |
| Header File | /Engine/Plugins/TextureGraph/Source/TextureGraph/Public/Expressions/Arrays/TG_Expression_ArrayOps.h |
| Include Path | #include "Expressions/Arrays/TG_Expression_ArrayOps.h" |
Syntax
UCLASS (MinimalAPI)
class UTG_Expression_ArraySplit : public UTG_Expression
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UTG_Expression → UTG_Expression_ArraySplit
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bSplice | bool | The ending index of the slicing operation (non-inclusive). Negative values mean the end of the array. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|
| EndIndex | int32 | The ending index of the slicing operation (non-inclusive). Negative values mean the end of the array. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|
| Input | FTG_VariantArray | The array to slice. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|
| Sliced | FTG_VariantArray | Sliced part of the array. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|
| Spliced | FTG_VariantArray | Spliced part of thea array. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|
| StartIndex | int32 | The starting index of the slicing operation. 0-indexed meaning that 0 indicates the first element of the input array. | Expressions/Arrays/TG_Expression_ArrayOps.h |
|