为什么在脚本上写了输出语句在控制台上并没有输出?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Test : MonoBehaviour {
// Use this for initialization
void Start () {
Debug.Log("test...");
}
// Update is called once per frame
void Update () {
}
}