C# Class LeopotamGroup.Gui.Tweeners.GuiTweenColor

Inheritance: TweeningBase
Mostra file Open project: Leopotam/LeopotamGroupLibraryUnity

Public Properties

Property Type Description
EndValue UnityEngine.Color
StartValue UnityEngine.Color
Target GuiWidget

Public Methods

Method 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.

Protected Methods

Method Description
OnInit ( ) : void
OnUpdateValue ( ) : void

Method Details

Begin() public method

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.
return GuiTweenColor

Begin() public static method

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.
return GuiTweenColor

OnInit() protected method

protected OnInit ( ) : void
return void

OnUpdateValue() protected method

protected OnUpdateValue ( ) : void
return void

Property Details

EndValue public_oe property

End color.
public Color,UnityEngine EndValue
return UnityEngine.Color

StartValue public_oe property

Start color.
public Color,UnityEngine StartValue
return UnityEngine.Color

Target public_oe property

Target GuiWidget. If null on start - GuiWidget on current gameobject will be used.
public GuiWidget Target
return GuiWidget