| GameLiftManagerGameControllerConvertByteArrayIntoFloatArray Method |
Converts a byte array into a float array
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax private float[] ConvertByteArrayIntoFloatArray(
byte[] _payload,
int _floatStartLocation,
int _floatArraySize
)
Private Function ConvertByteArrayIntoFloatArray (
_payload As Byte(),
_floatStartLocation As Integer,
_floatArraySize As Integer
) As Single()
private:
array<float>^ ConvertByteArrayIntoFloatArray(
array<unsigned char>^ _payload,
int _floatStartLocation,
int _floatArraySize
)
private member ConvertByteArrayIntoFloatArray :
_payload : byte[] *
_floatStartLocation : int *
_floatArraySize : int -> float32[]
Parameters
- _payload
- Type: SystemByte
the byte array to be converted - _floatStartLocation
- Type: SystemInt32
The start location of the floats in the byte array - _floatArraySize
- Type: SystemInt32
The size of the float array
Return Value
Type:
SingleA float array
See Also