Core.RemoveActiveTimedFunctionsByIDs

Removes Timed Functions under the integer IDs submitted.

Description

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

Example Usage (C#)


//Removing several Timed Functions by ID

public bool Invoke() {
int[] timedFunctionsToRemove = new int[] { 0, 1, 2 };
bool success = _core.RemoveTimedFunctionsByIDs(timedFunctionsToRemove); return true;
}

Parameters

int[]

timedFunctionIDs

The integer IDs of the Timed Functions to remove from the Core’s timers.

Returns

A bool representing the success of the operation.

See Also

  • Core.GetActiveTimedFunctionIDs
  • Core.RemoveTimedFunctionCS