Beispiel #1
0
        void Update()
        {
            var before = animatedTitleContent.text;

            AnimatedEditorTitleContent.Animate(ref animatedTitleContent, "StrataCuller");

            if (before != animatedTitleContent.text)//optimization, this editor is starting to bog with long reports
            {
                titleContent = animatedTitleContent;
                Repaint();
            }

            if (_assetScanRoutine != null)
            {
                _assetScanRoutine.MoveNext();
            }
        }
 void Update()
 {
     AnimatedEditorTitleContent.Animate(ref animatedTitleContent, "CamMonitor");
     titleContent = animatedTitleContent;
     Repaint();
 }