↧
Answer by crohr
You can use a System.Action, and assign a method from any script to it.
View ArticleAnswer by MJG1123
you name the other script then .Invoke like [StarManta][1] on the forums suggested public MonoBehaviour otherScript; void Start() { otherScript.Invoke("example1", 3f); } [1]:...
View Article