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 |
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)
|
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 |
public NewEvent ( string eventName, float eventValue ) : void | ||
eventName | string | |
eventValue | float | |
return | void |
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 |
public NewEvent ( string eventName, float x, float y, float z ) : void | ||
eventName | string | |
x | float | |
y | float | |
z | float | |
return | void |
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 |