Windows Animations
Add this component to the window object to use.
Notifications also has other animations: Notifications Animations.
Options
Unscaled Time
boolAnimation with use unscaled time if enabled.
Animation Curve
AnimationCurveCurve used to animate values.
Animate Alpha
boolAnimate window transparency.
Animate Scale
boolAnimate window scale.
Animate Anchors
boolAnimate window
RectTransformanchors.Anchor X
floatTarget
RectTransformanchor X value.Anchor Y
floatTarget
RectTransformanchor Y value.Disable Interactable
boolBlocks all interactions with dialog while the animation is running.User cannot press any button, change the values of other widgets, and so on.
Custom Animations
You can create your animations by implementing the IWindowAnimations interface.
public interface IWindowAnimations
{
bool Enabled
{
get;
}
IEnumerator Open();
IEnumerator Close();
}