Core.GetActiveTimedFunctionIDs

Gets a list of all IDs of active Timed Functions in the Core.

Description

All Timed Functions require an integer ID input in their code so they can be tracked by the Core. This function returns an array of those integer IDs.

Example Usage (C#)


//Getting the IDs of all active Timed Functions

public bool Invoke() {
int[] timedFunctionIDs = _core.GetActiveTimedFunctionIDs(); return true;
}

Parameters

None.

Returns

An array of integer IDs representing each active Timed Function in the Core.

See Also

  • Core.RemoveTimedFunctionsByIDs