弾のリロードができるようにさせたいです
C#のUnityで銃の弾をリロードさせるコードを書いてる最中にこのようなエラーが起きました。
発生している問題・エラーメッセージ
error CS0116: A namespace cannot directly contain members such as fields or methods
IEnumerator SupplyTimer()
{
if(!supplying)
{
supplying = true;
SupplyValue++;
yield return new WaitForSeconds(supplyInterval);
supplying = false;
}
}
バージョンは2021.1.4f1 です。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー