public static void CodeUpdate() { // XXX: Add frame throttling control int count = callQueue.Count; for (int i = 0; i < count; i++) { NodeScript node = callQueue.Dequeue(); node.CodeUpdate(); } }