WarningText









How do I use Warning Text
Below are practical examples compiled from projects for learning and reference purposes

Featured Snippets


File name: GameplayController.cs Copy
159  IEnumerator SpawnBossTime(){
160   warningText.gameObject.SetActive (true);
161   warningText.transform.GetComponent ().PlayWarning ();
162   yield return new WaitForSeconds (5f);
163   warningText.gameObject.SetActive (false);
164   warningText.transform.GetComponent ().StopWarning ();
165   GameObject.FindGameObjectWithTag ("Spawner").transform.GetComponent ().SpawnBoss ();
166  }

Download file with original file name:WarningText

WarningText 109 lượt xem

Gõ tìm kiếm nhanh...