Click or drag to resize

ITweenT Interface

Interface for a tween object that handles a specific type.

Namespace:  DigitalRuby.WeatherMaker
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public interface ITween<T> : ITween
where T : struct, new()

Type Parameters

T
The type to tween.

The ITweenT type exposes the following members.

Properties
  NameDescription
Public propertyCurrentProgress
Gets the current progress of the tween.
Public propertyCurrentValue
Gets the current value of the tween.
Public propertyKey
The key that identifies this tween - can be null
(Inherited from ITween.)
Public propertyState
Gets the current state of the tween.
(Inherited from ITween.)
Top
Methods
  NameDescription
Public methodPause
Pauses the tween.
(Inherited from ITween.)
Public methodResume
Resumes the paused tween.
(Inherited from ITween.)
Public methodSetup
Initialize a tween.
Public methodStart
Start the tween.
(Inherited from ITween.)
Public methodStop
Stops the tween.
(Inherited from ITween.)
Public methodUpdate
Updates the tween.
(Inherited from ITween.)
Top
See Also