当前位置: 首页>>代码示例>>C#>>正文


C# Text.DOFade方法代码示例

本文整理汇总了C#中UnityEngine.UI.Text.DOFade方法的典型用法代码示例。如果您正苦于以下问题:C# Text.DOFade方法的具体用法?C# Text.DOFade怎么用?C# Text.DOFade使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UnityEngine.UI.Text的用法示例。


在下文中一共展示了Text.DOFade方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Fade

 public static void Fade(Text element, float fadeTo, float fadeAfter, float timeToFade)
 {
     DOTween.Sequence()
         .AppendInterval(fadeAfter)
         .Append(element.DOFade(fadeTo, timeToFade)
         .SetEase(Ease.InOutExpo));
 }
开发者ID:Kurukshetran,项目名称:Unity2D-Components,代码行数:7,代码来源:MFX.cs

示例2: AnimateDisappearLeft

 void AnimateDisappearLeft(Text text)
 {
     RectTransform rect = text.rectTransform;
     Vector2 realPosition = rect.anchoredPosition;
     rect.anchoredPosition = new Vector2(realPosition.x - xOffset, realPosition.y);
     rect.DOAnchorPos(realPosition, animationTime + 0.1f, true);
     text.DOFade(0, animationTime);
     DOTween.Play(text);
 }
开发者ID:loloop,项目名称:videogames-moveis,代码行数:9,代码来源:InGame.cs

示例3: PostTweet

        public static IEnumerator PostTweet(string text, string mediaID, string consumerKey, string consumerSecret, AccessTokenResponse response, Text outputText)
        {
            Dictionary<string, string> parameters = new Dictionary<string, string>();
            parameters.Add("status", text);
            parameters.Add("media_ids", mediaID);

            // Add data to the form to post.
            WWWForm form = new WWWForm();
            form.AddField("status", text);
            form.AddField("media_ids", mediaID);

            Debug.Log(mediaID);
            Debug.Log("Posting to Twitter...");
            // HTTP header
            var headers = new Dictionary<string, string>();
            headers["Authorization"] = GetHeaderWithAccessToken("POST", "https://api.twitter.com/1.1/statuses/update.json", consumerKey, consumerSecret, response, parameters);
            WWW web = new WWW("https://api.twitter.com/1.1/statuses/update.json", form.data, headers);
            yield return web;

            Debug.Log(web.text);
            if (web.error != "Null")
            {
                outputText.text = "Upload complete!";
                yield return new WaitForSeconds(2);
                outputText.DOFade(0, 1);
            }
            else
            {
                Debug.Log(web.error);
            }
        }
开发者ID:GibletsofJesus,项目名称:Twitter-proj,代码行数:31,代码来源:Twitter.cs


注:本文中的UnityEngine.UI.Text.DOFade方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。