C# Класс PunkX.Tween

Base class for all Tween objects, can be added to any Core-extended classes.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
active System.Boolean
complete CompletionDelegate

Защищенные свойства (Protected)

Свойство Тип Описание
_ease EaserDelegate
_t float
_target uint
_time float

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

Метод Описание
Tween ( uint duration, uint type, CompletionDelegate onCompletion = null, EaserDelegate ease = null ) : System

Constructor. Specify basic information about the Tween.

start ( ) : void

Starts the Tween, or restarts it if it's currently running.

update ( ) : void

Updates the Tween, called by World.

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

Метод Описание
finish ( ) : void

Called when the Tween completes.

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

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

Constructor. Specify basic information about the Tween.
public Tween ( uint duration, uint type, CompletionDelegate onCompletion = null, EaserDelegate ease = null ) : System
duration uint Duration of the tween (in seconds or frames).
type uint Tween type, one of Tween.PERSIST (default), Tween.LOOPING, or Tween.ONESHOT.
onCompletion CompletionDelegate Optional callback for when the Tween completes.
ease EaserDelegate Optional easer function to apply to the Tweened value.
Результат System

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

Starts the Tween, or restarts it if it's currently running.
public start ( ) : void
Результат void

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

Updates the Tween, called by World.
public update ( ) : void
Результат void

Описание свойств

_ease защищенное свойство

protected EaserDelegate _ease
Результат EaserDelegate

_t защищенное свойство

protected float _t
Результат float

_target защищенное свойство

protected uint _target
Результат uint

_time защищенное свойство

protected float _time
Результат float

active публичное свойство

if the tween should update
public Boolean,System active
Результат System.Boolean

complete публичное свойство

callback function to be called when the tween has finished
public CompletionDelegate complete
Результат CompletionDelegate