好友
阅读权限10
听众
最后登录1970-1-1
|
如题,没有反应,原本是MSGcontroller(“1111”);改成控制台就有反应
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class MSGcontroller : MonoBehaviour
{
public Text txt;
public static string currentmsg;
public static void AddMsg(string msg)
{
currentmsg = currentmsg +"\n"+ msg;
}
IEnumerator msgUpdate()
{
while (true)
{
txt.text = currentmsg;
yield return new waitForSeconds(0, 0.5f);
}
}
void onEnable()
{
StartCoroutine(msgUpdate());
}
void onDisable()
{
StopCoroutine(msgUpdate());
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class test : MonoBehaviour
{
void Update()
{
if (Input.GetMouseButton(0))
{
MSGcontroller.AddMsg("11111");
}
}
}
这是两个脚本
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|