Quantcast
Channel: Questions in topic: "parser"
Viewing all articles
Browse latest Browse all 108

Error cs8025 script (parser error) How i can fix this?

$
0
0
using UnityEngine; using System.Collections; public class LanternaSlender : MonoBehaviour { public Light spotLightFL; private Ray rayToInteract; private RaycastHit hitInteract; public float rangeInteract; // Use this for initialization void Start () { } // Update is called once per frame void Update () { if(Input.GetMouseButtonDown(1) || Input.GetKeyDown(KeyCode.F)){ spotLightFL.enabled = !spotLightFL.enabled; if(Input.GetMouseButtonDown(0)){ rayToInteract = Camera.main.ScreenPointToRay(new Vector3(Screen.width/2, Screen.height/2, 0)); if(Physics.Raycast(rayToInteract, out hitInteract, rangeInteract)){ if(hitInteract.collider.tag = "InteractObject"){ Destroy(hitInteract.collider.gameObject); } } }

Viewing all articles
Browse latest Browse all 108

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>