我刚开始游戏开发,每当我将Visual Studio代码加载到Unity中时,就遇到了一个问题,它说缺少此行为中未知的引用脚本
这是我的剧本
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class VirtualManMovement : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Hello, World!") ;
}
// Update is called once per frame
void Update()
{
}
}
我需要一个解决方案
2条答案
按热度按时间7uzetpgm1#
如果文件名与类名不匹配,则可能发生这种情况。请确保包含此脚本的文件也命名为
VirtualManMovement.cs
k5ifujac2#
1.请确保在Unity中转到编辑-〉首选项,并看到在选定的IDE中有Unity External tools。
1.确保代码文件名与类相同,以防止混淆.
刚开始的时候我也很困惑。希望你能觉得这个有用