void Update()
 {
     if (graphEditor != null)
     {
         graphEditor.Update();
     }
 }
Example #2
0
        void Update()
        {
            var frameTime = 1 / 100.0f;

            timer.Update(frameTime);
            if (graphEditor != null)
            {
                graphEditor.Update();
            }
        }