C# Класс GA_Design, TheUnseen

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
CreateNewEvent ( string eventName, float eventValue, float x, float y, float z ) : void

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

Описание методов

NewEvent() публичный Метод

public NewEvent ( string eventName ) : void
eventName string
Результат void

NewEvent() публичный Метод

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. ///
Результат void

NewEvent() публичный Метод

public NewEvent ( string eventName, float eventValue ) : void
eventName string
eventValue float
Результат void

NewEvent() публичный Метод

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. ///
Результат void

NewEvent() публичный Метод

public NewEvent ( string eventName, float x, float y, float z ) : void
eventName string
x float
y float
z float
Результат void

NewEvent() публичный Метод

public NewEvent ( string eventName, float eventValue, float x, float y, float z ) : void
eventName string
eventValue float
x float
y float
z float
Результат void