Axiom.Core.MeterManager.Report C# (CSharp) Méthode

Report() public static méthode

public static Report ( string title ) : void
title string
Résultat void
		public static void Report( string title )
		{
			Report( title, null, 0, "" );
		}

Same methods

MeterManager::Report ( string title, StreamWriter writer, int start, string optionsString ) : void

Usage Example

        public bool ToggleMeteringLongestFrame()
        {
            bool value = false;

            if (meterLongestFrame)
            {
                if (longestFrameMeterEvents != null)
                {
                    MeterManager.Report("Longest Frame", longestFrameMeterEvents);
                    longestFrameMeterEvents = null;
                    value = true;
                }
            }
            longestFrameTime  = 0;
            meterLongestFrame = !meterLongestFrame;
            return(value);
        }
All Usage Examples Of Axiom.Core.MeterManager::Report