UnityのC#学習してます。
プレハブの学習をしてるのですが以下のエラー文がでて
再生されません。
エラー文
Assets\�����ƈړ�����\OnMouseDown_CreatePrefab1.cs(10,7): error CS0111: Type 'OnMouseDown_CreatePrefab' already defines a member called 'Update' with the same parameter types
コード文
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// タッチするプレハブを作る
public class OnMouseDown_CreatePrefab : MonoBehaviour {
public GameObject newPrefab; // プレハブ:Inspectorで指定 void Update() { if (Input.GetMouseButtonDown(0)) { // タッチした位置をカメラの中での位置に変換して var pos = Camera.main.ScreenToWorldPoint(Input.mousePosition + Camera.main.transform.forward); pos.z = -5; // 手前に表示 // プレハブを作ってその位置に移動する GameObject newGameObject = Instantiate(newPrefab) as GameObject; newGameObject.transform.position = pos; } }
}
新しいプロジェクトを新規で作成し
おなじプレハブの学習をしたら
無事再生されました。
メインカメラにアタッチした時
エラーがでます。
なぜ再生されなかったのがか
不明です
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー