Created
June 28, 2018 07:53
-
-
Save KumoKairo/bedfd4ffb824c9a46c989b1b5622b80e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dialoguePanel.DOSizeDelta(new Vector2(_dialogWeight, LayoutUtility.GetPreferredHeight(dialoguePanel) + 20f), animSettings.portraitAnimationDuration / 1.2f).OnComplete(() => | |
// Второй вариант | |
dialoguePanel | |
.DOSizeDelta( | |
new Vector2(_dialogWeight, LayoutUtility.GetPreferredHeight(dialoguePanel) + 20f), | |
animSettings.portraitAnimationDuration / 1.2f) | |
.OnComplete(() => | |
// Третий вариант | |
var tweener = dialoguePanel.DOSizeDelta( | |
new Vector2(_dialogWeight, LayoutUtility.GetPreferredHeight(dialoguePanel) + 20f), | |
animSettings.portraitAnimationDuration / 1.2f); | |
twener.OnComplete(() => |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment