mouse click input unity 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: left moust click unity

//Left mouse Click
if(Input.GetMouseButtonDown(0))

//Right Mouse Click
if(Input.GetMouseButtonDown(1))

//Scroll Wheel
if(Input.GetMouseButtonDown(2))

Example 3: GetMousebuttonDown unity

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