Unityでマウスの動きに連動してカメラを動かすスクリプト の作成中にエラーが発生してしまいました
発生している問題・エラーメッセージ
error CS0116: A namespace cannot directly contain members such as fields or methods
該当のソースコード
using System.Collections; using System.Collections.Generic; using UnityEngine; private float x_Rotation; private float y_Rotation; public class CameraScript : MonoBehaviour{ // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { x_Rotation = Input.GetAxis("Mouse X"); y_Rotation = Input.GetAxis("Mouse Y"); this.transform.Rotate(x_Rotation,y_Rotation,0); } }
よろしくお願いいたします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/12 13:31