我正在创建所有新的统一项目,并将空游戏对象添加到我的第一个场景中,还创建脚本并将其添加到该对象中,但是当我尝试运行场景脚本时,控制台窗口中没有显示任何输出。这是我的代码
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.");
}
}
森栏
相关分类