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);
}
}
}
↧