Animation:SetScript("scriptType", handler)
|
Sets the widget's handler function for a script.
|
Animation:SetOrder(order)
|
Sets the order for the animation to play within its parent group.
|
Animation:SetEndDelay(delay)
|
Sets the amount of time for the animation to delay after finishing.
|
Animation:SetDuration(duration)
|
Sets the time for the animation to progress from start to finish.
|
stopped = Animation:IsStopped()
|
Returns whether the animation is currently stopped.
|
playing = Animation:IsPlaying()
|
Returns whether the animation is currently playing.
|
paused = Animation:IsPaused()
|
Returns whether the animation is currently paused.
|
isType = Animation:IsObjectType("type")
|
Returns whether the object belongs to a given widget type.
|
done = Animation:IsDone()
|
Returns whether the animation has finished playing.
|
delaying = Animation:IsDelaying()
|
Returns whether the animation is currently in the middle of a start or end delay.
|
hasScript = Animation:HasScript("scriptType")
|
Returns whether the widget supports a script handler.
|
delay = Animation:GetStartDelay()
|
Returns the amount of time the animation delays before its progress begins.
|
smoothType = Animation:GetSmoothing()
|
Returns the smoothing type for the animation.
|
progress = Animation:GetSmoothProgress()
|
Returns the progress of the animation (ignoring start and end delay)
|
handler = Animation:GetScript("scriptType")
|
Returns the widget's handler function for a script.
|
region = Animation:GetRegionParent()
|
Returns the `Region` object on which the animation operates.
|
progress = Animation:GetProgressWithDelay()
|
Returns the progress of the animation and associated delays.
|
progress = Animation:GetProgress()
|
Returns the progress of an animation, ignoring smoothing effects.
|
parent = Animation:GetParent()
|
Returns the object's parent object.
|
order = Animation:GetOrder()
|
Returns the order of the animation within its parent group.
|
type = Animation:GetObjectType()
|
Returns the object's widget type.
|
name = Animation:GetName()
|
Returns the widget object's name.
|
delay = Animation:GetEndDelay()
|
Returns the amount of time the animation delays after finishing.
|
elapsed = Animation:GetElapsed()
|
Returns the amount of time since the animation began playing.
|
duration = Animation:GetDuration()
|
Returns the time for the animation to progress from start to finish.
|
Alpha:SetStartDelay(delay)
|
Sets the amount of time for the animation to delay before its progress begins.
|
Alpha:SetSmoothing("smoothType")
|
Sets the smoothing type for the animation.
|
Alpha:SetSmoothProgress()
|
Функция еще не задокументированна.
|
Alpha:SetScript("scriptType", handler)
|
Sets the widget's handler function for a script.
|
Alpha:SetOrder(order)
|
Sets the order for the animation to play within its parent group.
|
Alpha:SetEndDelay(delay)
|
Sets the amount of time for the animation to delay after finishing.
|
Alpha:SetDuration(duration)
|
Sets the time for the animation to progress from start to finish.
|
Alpha:SetChange(change)
|
Sets the animation's amount of alpha (opacity) change.
|
stopped = Alpha:IsStopped()
|
Returns whether the animation is currently stopped.
|
playing = Alpha:IsPlaying()
|
Returns whether the animation is currently playing.
|
paused = Alpha:IsPaused()
|
Returns whether the animation is currently paused.
|
isType = Alpha:IsObjectType("type")
|
Returns whether the object belongs to a given widget type.
|
done = Alpha:IsDone()
|
Returns whether the animation has finished playing.
|
delaying = Alpha:IsDelaying()
|
Returns whether the animation is currently in the middle of a start or end delay.
|
hasScript = Alpha:HasScript("scriptType")
|
Returns whether the widget supports a script handler.
|
delay = Alpha:GetStartDelay()
|
Returns the amount of time the animation delays before its progress begins.
|