unityでゲーム制作の勉強をしていた時に以下のエラーが出てきました。
Assets\DropTofu.cs(14,29): error CS1955: Non-invocable member 'Vector3' cannot be used like a method.
ちなみにこれを書いて適用した後に出てきました。
using System.Collections.Specialized;
using UnityEngine;
public class DropCube : MonoBehaviour
{
[SerializeField] GameObject MyCube;
private int Cubecount = 0;
void Start()
{
InvokeRepeating("DropOne", 2f, 1f);
}
void DropOne()
{
Cubecount++;
Instantiate(MyCube, Vector3(0, 5, 0), Quaternion.identity);
if (Cubecount == 100)
{
CancelInvoke();
}
}
}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。