You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
public class CustomScript : MonoBehaviour |
|
{ |
|
public string myString = ""; |
|
|
|
public float timeToWait = 5f; |
|
|
|
public void MyFunction() |
|
{ |
|
Debug.Log("Called my function"); |
|
} |
|
|
|
public IEnumerator MyCoroutine() |
|
{ |
|
Debug.Log("Called my coroutine"); |
|
|
|
yield return new WaitForSeconds(timeToWait); |
|
|
|
Debug.Log("Coroutine finished"); |
|
} |
|
|
|
}
|
|
|