Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Mouse0

The Left (or primary) mouse button.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Field
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
Mouse0 = 323

Remarks

Use this to detect left mouse button presses. The “0” mouse button is the main button on the user’s mouse, which is usually the left mouse button.

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Update() { //Detect if the left mouse button is pressed if (Input.GetKey(KeyCode.Mouse0)) { Debug.Log("Mouse 0 "); } }}