C# Class UnityContrib.UnityEngine.TimelineLog

Records an entry for the timeline.
Inheritance: IDisposable
Datei anzeigen Open project: UnityContrib/framework

Public Methods

Method Description
Clear ( ) : void

Clears the timeline.

Dispose ( ) : void

Finalizes the log entry and records it.

TimelineLog ( string source, string category, string message ) : System

Initializes a new instance of the T:UnityContrib.UnityEngine.TimelineLog class.

Method Details

Clear() public static method

Clears the timeline.
public static Clear ( ) : void
return void

Dispose() public method

Finalizes the log entry and records it.
public Dispose ( ) : void
return void

TimelineLog() public method

Initializes a new instance of the T:UnityContrib.UnityEngine.TimelineLog class.
public TimelineLog ( string source, string category, string message ) : System
source string /// The source of the entry. ///
category string /// The category of the entry. ///
message string /// The message of the entry. ///
return System