| ASLObjectFloatCallback Delegate |
Delegate for the Float callback function
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public delegate void FloatCallback(
string _id,
float[] _f
)
Public Delegate Sub FloatCallback (
_id As String,
_f As Single()
)
public delegate void FloatCallback(
String^ _id,
array<float>^ _f
)
type FloatCallback =
delegate of
_id : string *
_f : float32[] -> unit
Parameters
- _id
- Type: SystemString
The id of the object that called [!:ASLObject.SendFloatArray(float[])] - _f
- Type: SystemSingle
The float(s) to be passed into the user defined function
See Also