예제 #1
0
    public void Start(string nodeName)
    {
      // Ignore any calls before the first NewFrame call. This occurs when Reset() 
      // is called in the middle of profiling.
      if (FrameCount <= 0)
        return;

      if (nodeName != CurrentNode.Name)
        CurrentNode = CurrentNode.GetSubNode(nodeName);

      CurrentNode.Call();
    }