Navigation
API > API/Plugins > API/Plugins/GeometryCollectionNodes > API/Plugins/GeometryCollectionNodes/Dataflow > API/Plugins/GeometryCollectionNodes/Dataflow/FFloatArrayToIntArrayDataflowNod-
Syntax
UPROPERTY (EditAnywhere, Category="Float", Meta=(DataflowInput))
DATAFLOW_NODE_DEFINE_INTERNAL, "FloatArrayToIntArray", "MathConversions", "") public TArray < float > FloatArray
Remarks
Conversion method: Floor takes the floor of each input float value - 1.1 turns into 1. Ceil takes the ceil - 1.1 turns into 2. Round rounds to the nearest integer - 1.1 turns into 1. Tuncate trucates like a type cast - 1.1 turns into 1. Non-zero to Index appends the index of all non-zero values to the output array. Zero to Index appends the index of all zero values to the output array. Float array value to convert