unity3d 我的Visual Studio脚本在Unity中无法运行

2w2cym1i  于 2023-02-05  发布在  其他
关注(0)|答案(2)|浏览(397)

我刚开始游戏开发,每当我将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()
    {
        
    }
}

我需要一个解决方案

7uzetpgm

7uzetpgm1#

如果文件名类名不匹配,则可能发生这种情况。请确保包含此脚本的文件也命名为VirtualManMovement.cs

k5ifujac

k5ifujac2#

1.请确保在Unity中转到编辑-〉首选项,并看到在选定的IDE中有Unity External tools
1.确保代码文件名与类相同,以防止混淆.
刚开始的时候我也很困惑。希望你能觉得这个有用

相关问题