C# Класс Project290.Mathematics.tVector2

This is a transitioning Vector2. This is used like a tfloat.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GoTo ( float xTarget, float yTarget ) : void

Goes to the specified x,y target.

GoTo ( float xTarget, float yTarget, float duration ) : void

Goes to the specified x,y target.

GoTo ( float xTarget, float yTarget, float duration, bool useRealTime ) : void

Goes to the specified x,y target.

Set ( float xValue, float yValue ) : void

Sets the specified Vector2 value.

Update ( ) : void

Updates this instance.

tVector2 ( float x, float y ) : System

Initializes a new instance of the tVector2 class.

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

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

Goes to the specified x,y target.
public GoTo ( float xTarget, float yTarget ) : void
xTarget float The x target.
yTarget float The y target.
Результат void

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

Goes to the specified x,y target.
public GoTo ( float xTarget, float yTarget, float duration ) : void
xTarget float The x target.
yTarget float The y target.
duration float The duration in seconds.
Результат void

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

Goes to the specified x,y target.
public GoTo ( float xTarget, float yTarget, float duration, bool useRealTime ) : void
xTarget float The x target.
yTarget float The y target.
duration float The duration in seconds.
useRealTime bool if set to true [use real time].
Результат void

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

Sets the specified Vector2 value.
public Set ( float xValue, float yValue ) : void
xValue float The x value.
yValue float The y value.
Результат void

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

Updates this instance.
public Update ( ) : void
Результат void

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

Initializes a new instance of the tVector2 class.
public tVector2 ( float x, float y ) : System
x float The x value.
y float The y value.
Результат System