Skip to content

Instantly share code, notes, and snippets.

@gmodecorp
Last active August 29, 2015 14:11
Show Gist options
  • Save gmodecorp/978a4eb9c898db39cd7f to your computer and use it in GitHub Desktop.
Save gmodecorp/978a4eb9c898db39cd7f to your computer and use it in GitHub Desktop.
public static void RemoveAllRoutines(MyLib.MonoBehaviour behaviour)
{
MyLib.BehaviourData bdata;
if (behaviourDict.TryGetValue(behaviour, out bdata))
{
bdata.routineList.Clear();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment