LoginSignup
yicode
@yicode

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

UnityとC#でのゲーム作り

解決したいこと

ここに解決したい内容を記載してください。

例)
C#とUnityで簡単なゲームを作っています。
実行すると次のようなエラーが出てしまいました。
どうしたらいいでしょうか?

発生している問題・エラー

(10,7): error CS0246: The type or namespace name `UnityEngine' 
could not be found. Are you missing an assembly reference?

または、問題・エラーが起きている画像をここにドラッグアンドドロップ

該当するソースコード

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class NewBehaviourScript : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

0

No Answers yet.

Your answer might help someone💌