我正在创建所有新的统一项目,并将空游戏对象添加到我的第一个场景中,还创建脚本并将其添加到该对象中,但是当我尝试运行场景脚本时,控制台窗口中没有显示任何输出。这是我的代码using System.Collections;using UnityEngine;public class ScriptObject : MonoBehaviour{ // Start is called before the first frame update void Start() { Debug.Log("Start method called."); } // Update is called once per frame void Update() { Debug.Log("Update method calling."); }}
添加回答
举报
0/150
提交
取消