using System.Collections; using System.Collections.Generic; using UnityEngine; public class RayShooter : MonoBehaviour { private Camera cam; void Start() { cam = GetComponent<Camera>(); #1 } void Update() { if (Input.GetMouseButtonDown(0)) { #2 Vector3 point = new Vector3(cam.pixelWidth/...