تایپ خودکار متن در یونیتی 5
سه شنبه, ۶ بهمن ۱۳۹۴، ۰۲:۱۰ ق.ظ
منبع:gameover.blog.ir
کاربرد:
تایپ خودکار متن در بازی ها:
اینم مثال:
using UnityEngine; using System.Collections; using UnityEngine.UI; // attach to UI Text component (with the full text already there) public class UITextTypeWriter.cs : MonoBehaviour { Text txt; string story; void Awake () { txt = GetComponent<Text> (); story = txt.text; txt.text = ""; // TODO: add optional delay when to start StartCoroutine ("PlayText"); } IEnumerator PlayText() { foreach (char c in story) { txt.text += c; yield return new WaitForSeconds (0.125f); } } }
۹۴/۱۱/۰۶
telegram.me/arashvp12