/* * @author Valentin Simonov / http://va.lent.in/ */ using UnityEngine; using System.Collections; /// public class ShowMe : MonoBehaviour { IEnumerator Start() { var canvas = GetComponent(); canvas.enabled = false; yield return new WaitForSeconds(.5f); canvas.enabled = true; } }