- Found in:
- PapyrusUtil
Description
Documentation Comment
Append a value to the end of the given array and return the new array.
NOTE: The array has to be recreated each time you call this. For the sake of memory usage and performance, DO NOT use these to build up an array through a loop,
in such a situation it is significantly faster to create the full length array first and then fill it. Best to limit to only the occasional need.
Parameters
float[]ArrayValues
floatpush
Examples
Auto-Generated Example
float[] myFloatArray__ArrayValues
float myFloat__push
float[] returnedValue = PapyrusUtil.PushFloat(myFloatArray__ArrayValues, myFloat__push)