C# Class GA_Design, TheUnseen

Mostra file Open project: henryj41043/TheUnseen Class Usage Examples

Public Methods

Method Description
NewEvent ( string eventName ) : void
NewEvent ( string eventName, Vector3 trackPosition ) : void

Creates a new event...

NewEvent ( string eventName, float eventValue ) : void
NewEvent ( string eventName, float eventValue, Vector3 trackPosition ) : void

Creates a new event

NewEvent ( string eventName, float x, float y, float z ) : void
NewEvent ( string eventName, float eventValue, float x, float y, float z ) : void

Private Methods

Method Description
CreateNewEvent ( string eventName, float eventValue, float x, float y, float z ) : void

Adds a custom event to the submit queue (see GA_Queue)

Method Details

NewEvent() public method

public NewEvent ( string eventName ) : void
eventName string
return void

NewEvent() public method

Creates a new event...
public NewEvent ( string eventName, Vector3 trackPosition ) : void
eventName string /// A event string you define ///
trackPosition Vector3 /// Position that the event is tied to. ///
return void

NewEvent() public method

public NewEvent ( string eventName, float eventValue ) : void
eventName string
eventValue float
return void

NewEvent() public method

Creates a new event
public NewEvent ( string eventName, float eventValue, Vector3 trackPosition ) : void
eventName string /// A event string you define ///
eventValue float /// A value of the event, can be null ///
trackPosition Vector3 /// Position that the event is tied to. ///
return void

NewEvent() public method

public NewEvent ( string eventName, float x, float y, float z ) : void
eventName string
x float
y float
z float
return void

NewEvent() public method

public NewEvent ( string eventName, float eventValue, float x, float y, float z ) : void
eventName string
eventValue float
x float
y float
z float
return void