To get started, add NamedTimers to namespaces. Then create a new timer handler and call its Tick function in every Update call.: using NamedTimers; ... TimerHandler th; void Start() { th = new ...
Once this line runs, your timer will be activated and whatever delegate you passed to it will be invoked after x amount of seconds specified in the first parameter of the CreateTimer function. (In ...