Hi!
I'm new to Unity and I'm having trouble finding good resources for C# and Unity so I'll ask my question here.
I want to detect if a user presses the left mouse button, the code I'm having now is:
using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour
{
// Use this for initialization
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
Thanks for answers.