我正在尝试统一编写枪支脚本,但它说命名空间不能直接包含字段或方法等成员[重复]
Posted
技术标签:
【中文标题】我正在尝试统一编写枪支脚本,但它说命名空间不能直接包含字段或方法等成员[重复]【英文标题】:I am trying to write a gun script in unity but it says a namespace cannot directly contain members such as fields or methods [duplicate] 【发布时间】:2021-06-20 02:40:46 【问题描述】:错误:命名空间不能包含字段或方法等成员
using UnityEngine;
公共类枪:MonoBehaviour
公众浮动伤害 = 10f; 公共浮动范围 = 100f;
公共摄像头 fpsCam;
// Update is called once per frame
void Update()
if (Input.GetButtonDown("fire1"))
Shoot();
void Shoot ()
RaycastHit hit;
if (Physics.Raycast(fpsCam.transform.position, fpsCam.transform.forward, out hit, range))
Debug.Log(hit.transform.name);
【问题讨论】:
【参考方案1】:我相信您收到该错误是因为您忘记将方法和变量放在 Monobehavior 括号内。
尝试将所有内容放入其中,看看错误是否仍然存在。
IE
public class Gun : MonoBehaviour
variables
methods()
【讨论】:
以上是关于我正在尝试统一编写枪支脚本,但它说命名空间不能直接包含字段或方法等成员[重复]的主要内容,如果未能解决你的问题,请参考以下文章