| CreateObject_ExampleMyFloatsFunction Method |
A function that is called whenever an ASL object calls [!:ASL.ASLObject.SendFloatArray(float[])].
This function can be assigned to an ASL object upon creation.
Namespace:
SimpleDemos
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public static void MyFloatsFunction(
string _id,
float[] _myFloats
)
Public Shared Sub MyFloatsFunction (
_id As String,
_myFloats As Single()
)
public:
static void MyFloatsFunction(
String^ _id,
array<float>^ _myFloats
)
static member MyFloatsFunction :
_id : string *
_myFloats : float32[] -> unit
Parameters
- _id
- Type: SystemString
- _myFloats
- Type: SystemSingle
See Also