Background for Skyrim SE
Member of the PapyrusUtil script
float[]functionPushFloat(float[]ArrayValues, floatpush)NativeGlobal

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

  1. float[]ArrayValues

  2. floatpush


Examples

Auto-Generated Example

float[] myFloatArray__ArrayValues
float myFloat__push

float[] returnedValue = PapyrusUtil.PushFloat(myFloatArray__ArrayValues, myFloat__push)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.