C# Class LeopotamGroup.Gui.Tweeners.GuiTweenColor

Inheritance: TweeningBase
Afficher le fichier Open project: Leopotam/LeopotamGroupLibraryUnity

Méthodes publiques

Свойство Type Description
EndValue UnityEngine.Color
StartValue UnityEngine.Color
Target GuiWidget

Méthodes publiques

Méthode Description
Begin ( Color start, Color end, float time ) : GuiTweenColor

Begin tweening.

Begin ( GameObject go, Color start, Color end, float time ) : GuiTweenColor

Begin tweening at specified GameObject.

Méthodes protégées

Méthode Description
OnInit ( ) : void
OnUpdateValue ( ) : void

Method Details

Begin() public méthode

Begin tweening.
public Begin ( Color start, Color end, float time ) : GuiTweenColor
start UnityEngine.Color Start color.
end UnityEngine.Color End color.
time float Time for tweening.
Résultat GuiTweenColor

Begin() public static méthode

Begin tweening at specified GameObject.
public static Begin ( GameObject go, Color start, Color end, float time ) : GuiTweenColor
go UnityEngine.GameObject Holder of tweener.
start UnityEngine.Color Start color.
end UnityEngine.Color End color.
time float Time for tweening.
Résultat GuiTweenColor

OnInit() protected méthode

protected OnInit ( ) : void
Résultat void

OnUpdateValue() protected méthode

protected OnUpdateValue ( ) : void
Résultat void

Property Details

EndValue public_oe property

End color.
public Color,UnityEngine EndValue
Résultat UnityEngine.Color

StartValue public_oe property

Start color.
public Color,UnityEngine StartValue
Résultat UnityEngine.Color

Target public_oe property

Target GuiWidget. If null on start - GuiWidget on current gameobject will be used.
public GuiWidget Target
Résultat GuiWidget