![]() |
Dayz Explorer 1.29.162510
|
Go to the source code of this file.
Enumerations | |
| enum | AnimatedGridSpacerEasingType { EASE_LINEAR , EASE_IN_OUT_CUBIC , EASE_IN_OUT_QUART , EASE_OUT_BOUNCE , EASE_OUT_BACK } |
Functions | |
| void | AnimatedGridSpacer (Widget gridSpacer, int maxColums, float animDuration=0.25, AnimatedGridSpacerEasingType easing=AnimatedGridSpacerEasingType.EASE_IN_OUT_CUBIC) |
| void | SetColumWidth () |
| float | ApplyEasing (float t) |
| void | AnimateToColum (int targetColumn) |
| void | MoveRight () |
| void | MoveLeft () |
| void | Update (float timeslice) |
| void | SetAnimationDuration (float duration) |
| void | SetEasingType (AnimatedGridSpacerEasingType easing) |
| bool | IsAnimating () |
| int | GetCurrentRow () |
| Enumerator | |
|---|---|
| EASE_LINEAR | |
| EASE_IN_OUT_CUBIC | |
| EASE_IN_OUT_QUART | |
| EASE_OUT_BOUNCE | |
| EASE_OUT_BACK | |
Definition at line 2 of file animatedgridspacer.c.
| void AnimatedGridSpacer | ( | Widget | gridSpacer, |
| int | maxColums, | ||
| float | animDuration = 0.25, | ||
| AnimatedGridSpacerEasingType | easing = AnimatedGridSpacerEasingType.EASE_IN_OUT_CUBIC ) |
Definition at line 31 of file animatedgridspacer.c.
| void AnimateToColum | ( | int | targetColumn | ) |
Definition at line 93 of file animatedgridspacer.c.
Definition at line 65 of file animatedgridspacer.c.
| int GetCurrentRow | ( | ) |
Definition at line 174 of file animatedgridspacer.c.
| bool IsAnimating | ( | ) |
Definition at line 169 of file animatedgridspacer.c.
| void MoveLeft | ( | ) |
Definition at line 120 of file animatedgridspacer.c.
| void MoveRight | ( | ) |
Definition at line 108 of file animatedgridspacer.c.
| void SetAnimationDuration | ( | float | duration | ) |
Definition at line 159 of file animatedgridspacer.c.
| void SetColumWidth | ( | ) |
Definition at line 51 of file animatedgridspacer.c.
| void SetEasingType | ( | AnimatedGridSpacerEasingType | easing | ) |
Definition at line 164 of file animatedgridspacer.c.
| override void Update | ( | float | timeslice = 0 | ) |
Definition at line 132 of file animatedgridspacer.c.
| float m_AnimationDuration = 0.25 |
Definition at line 16 of file animatedgridspacer.c.
| float m_AnimationTime = 0 |
Definition at line 17 of file animatedgridspacer.c.
| float m_BasePosX |
Definition at line 20 of file animatedgridspacer.c.
| float m_BasePosY |
Definition at line 20 of file animatedgridspacer.c.
| float m_ColumWidth = 0 |
Definition at line 14 of file animatedgridspacer.c.
| int m_CurrentColum = 0 |
Definition at line 24 of file animatedgridspacer.c.
| float m_CurrentPosX |
Definition at line 19 of file animatedgridspacer.c.
| float m_CurrentPosY |
Definition at line 19 of file animatedgridspacer.c.
Definition at line 27 of file animatedgridspacer.c.
| enum AnimatedGridSpacerEasingType m_GridSpacer |
Definition at line 23 of file animatedgridspacer.c.
| int m_MaxColums = 3 |
Definition at line 25 of file animatedgridspacer.c.
| ref ScriptInvoker m_OnAnimationComplete |
Definition at line 29 of file animatedgridspacer.c.
| float m_StartPosX |
Definition at line 21 of file animatedgridspacer.c.
| float m_TargetPosX |
Definition at line 21 of file animatedgridspacer.c.