Property | Type | Description | |
---|---|---|---|
frameRate | int | ||
frames | List |
Method | Description | |
---|---|---|
AddInput ( int atFrame, InputInfo, inputInfo ) : void |
Adds the supplied input info to given frame
|
|
AddProperty ( int atFrame, string propertyName, string propertyValue ) : void |
Adds a custom property to a given frame
|
|
CheckFrame ( int frame ) : void | ||
GetClosestFrame ( float toTime ) : int |
Gets the closest frame index to a provided time
|
|
GetInput ( int atFrame, string inputName ) : InputInfo, |
Gets the given input at given frame.
|
|
GetInputs ( int atFrame ) : InputInfo[], |
Gets all inputs in a given frame.
|
|
GetProperty ( int atFrame, string propertyName ) : string |
Gets the given custom property if recorded in given frame
|
|
ParseRecording ( string jsonRecording ) : Recording, |
Parses a Recording from saved JSON string
|
|
Recording ( ) : System.Collections | ||
Recording ( Recording, oldRecording ) : System.Collections |
Copies the data in oldRecoding to a new instance of the Recording class.
|
|
Recording ( int frameRate ) : System.Collections | ||
ToString ( ) : string |
Returns a System.String that represents the current Recording using JSON
|
public AddInput ( int atFrame, InputInfo, inputInfo ) : void | ||
atFrame | int | /// At frame. /// |
inputInfo | InputInfo, | /// Input info. /// |
return | void |
public AddProperty ( int atFrame, string propertyName, string propertyValue ) : void | ||
atFrame | int | /// At frame. /// |
propertyName | string | /// Property name. /// |
propertyValue | string | /// Property value as string. /// |
return | void |
public GetClosestFrame ( float toTime ) : int | ||
toTime | float | /// To time. /// |
return | int |
public GetInput ( int atFrame, string inputName ) : InputInfo, | ||
atFrame | int | /// At frame. /// |
inputName | string | /// Input name. /// |
return | InputInfo, |
public GetInputs ( int atFrame ) : InputInfo[], | ||
atFrame | int | /// At frame. /// |
return | InputInfo[], |
public GetProperty ( int atFrame, string propertyName ) : string | ||
atFrame | int | /// At frame. /// |
propertyName | string | /// Property name. /// |
return | string |
public static ParseRecording ( string jsonRecording ) : Recording, | ||
jsonRecording | string | /// JSON recording /// |
return | Recording, |
public Recording ( Recording, oldRecording ) : System.Collections | ||
oldRecording | Recording, | /// Recording to be copied /// |
return | System.Collections |
public Recording ( int frameRate ) : System.Collections | ||
frameRate | int | |
return | System.Collections |