Core.GetActiveTimedFunctionsArePeriodic
Gets a list of bools True or False showing whether each active Timed Function in the Core is Periodic.
Description
Timed Functions may or may not be Periodic, this command shows all of the active Timed Functions’ periodicity. If they are marked false, they only execute once.
Example Usage (C#)
//Getting whether Timed Functions are Periodic
public bool Invoke() {
bool[] timedFunctionsPeriodic =
_core.GetActiveTimedFunctionsArePeriodic();
Parameters
None. |
Returns
An array of bools True or False representing whether each active Timed Function is Periodic or not.
See Also
- Core.SetActiveTimedFunctionPeriodic