public BehaviourTrigger addOperation(Operation op)
 {
     if (reflexes == null || currentReflex == null)
     {
         Debug.LogWarning("WARN: no condition checked, you must call addCondition first!");
         return(this);
     }
     currentReflex.addOperation(op);
     return(this);
 }