吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1292|回复: 1
收起左侧

[求助] Unity3D鼠标点击没有反应

[复制链接]
Nova010930 发表于 2021-11-22 21:17
如题,没有反应,原本是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");
        }
    }
}

这是两个脚本

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

senwj 发表于 2021-11-26 12:01
test.cs中要获取到MSGcontroller,或者用单例吧
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 18:48

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表