parent = Scale:GetParent()
|
Returns the object's parent object.
|
point, xOffset, yOffset = Scale:GetOrigin()
|
Returns the scale animation's origin point.
|
order = Scale:GetOrder()
|
Returns the order of the animation within its parent group.
|
type = Scale:GetObjectType()
|
Returns the object's widget type.
|
name = Scale:GetName()
|
Returns the widget object's name.
|
delay = Scale:GetEndDelay()
|
Returns the amount of time the animation delays after finishing.
|
elapsed = Scale:GetElapsed()
|
Returns the amount of time since the animation began playing.
|
duration = Scale:GetDuration()
|
Returns the time for the animation to progress from start to finish.
|
Rotation:SetStartDelay(delay)
|
Sets the amount of time for the animation to delay before its progress begins.
|
Rotation:SetSmoothing("smoothType")
|
Sets the smoothing type for the animation.
|
Rotation:SetSmoothProgress()
|
Функция еще не задокументированна.
|
Rotation:SetScript("scriptType", handler)
|
Sets the widget's handler function for a script.
|
Rotation:SetRadians(radians)
|
Sets the animation's rotation amount (in radians)
|
Rotation:SetOrder(order)
|
Sets the order for the animation to play within its parent group.
|
Rotation:SetEndDelay(delay)
|
Sets the amount of time for the animation to delay after finishing.
|
Rotation:SetDuration(duration)
|
Sets the time for the animation to progress from start to finish.
|
Rotation:SetDegrees(degrees)
|
Sets the animation's rotation amount (in degrees)
|
stopped = Rotation:IsStopped()
|
Returns whether the animation is currently stopped.
|
playing = Rotation:IsPlaying()
|
Returns whether the animation is currently playing.
|
paused = Rotation:IsPaused()
|
Returns whether the animation is currently paused.
|
isType = Rotation:IsObjectType("type")
|
Returns whether the object belongs to a given widget type.
|
done = Rotation:IsDone()
|
Returns whether the animation has finished playing.
|
delaying = Rotation:IsDelaying()
|
Returns whether the animation is currently in the middle of a start or end delay.
|
hasScript = Rotation:HasScript("scriptType")
|
Returns whether the widget supports a script handler.
|
delay = Rotation:GetStartDelay()
|
Returns the amount of time the animation delays before its progress begins.
|
smoothType = Rotation:GetSmoothing()
|
Returns the smoothing type for the animation.
|
progress = Rotation:GetSmoothProgress()
|
Returns the progress of the animation (ignoring start and end delay)
|
handler = Rotation:GetScript("scriptType")
|
Returns the widget's handler function for a script.
|
region = Rotation:GetRegionParent()
|
Returns the `Region` object on which the animation operates.
|
radians = Rotation:GetRadians()
|
Returns the animation's rotation amount (in radians)
|
progress = Rotation:GetProgressWithDelay()
|
Returns the progress of the animation and associated delays.
|
progress = Rotation:GetProgress()
|
Returns the progress of an animation, ignoring smoothing effects.
|
parent = Rotation:GetParent()
|
Returns the object's parent object.
|
point, xOffset, yOffset = Rotation:GetOrigin()
|
Returns the rotation animation's origin point.
|
order = Rotation:GetOrder()
|
Returns the order of the animation within its parent group.
|
type = Rotation:GetObjectType()
|
Returns the object's widget type.
|
name = Rotation:GetName()
|
Returns the widget object's name.
|
delay = Rotation:GetEndDelay()
|
Returns the amount of time the animation delays after finishing.
|
elapsed = Rotation:GetElapsed()
|
Returns the amount of time since the animation began playing.
|
duration = Rotation:GetDuration()
|
Returns the time for the animation to progress from start to finish.
|
degrees = Rotation:GetDegrees()
|
Returns the animation's rotation amount (in degrees)
|
Region:StopAnimating()
|
Stops any active animations involving the region or its children.
|
Region:SetSize(width, height)
|
Sets the size of the region to the specified values.
|