unity mouse pressed code example

Example 1: how to detect a mouse click in unity

using UnityEngine;
using System.Collections;

		if (Input.GetMouseButtonDown(0)) {
        	//Left Mouse Button
        } else if (Input.GetMouseButtonDown(1)) {
        	//Right Mouse Button
        } if (Input.GetMouseButtonDown(2)) {
        	//Middle Mouse Button
        }

Example 2: unity left mouse button

//Key Code in the Input Project Settings is "mouse 0"
Input.GetKey(KeyCode.Mouse0))

Example 3: unity check if key pressed

if (Input.GetKeyDown(KeyCode.KEY))

Example 4: GetMousebuttonDown unity

if (Input.GetMouseButtonDown(1))
//This is too stop spaming the gun

Example 5: unity key pressed

using UnityEngine;

public class Egsample_script : MonoBehaviour
{
    [SerializeField] KeyCode your_key;
    //select a key under inspektor
    void Update()
    {
        if (Input.GetKey(your_key))
        {
            print("your selekted key was pressed");
        }
    }
}

Tags:

Misc Example