I have limited knowledge on the subject of Unity, but I'll do my best to help you here.
1) Scripts are named whatever you want to name them. Whether you want to name them 'MovementBehaviour' or 'ShootMechanic', you can name these scripts as you wish. These scripts can be written in C#, Javascript (more often referred to as 'Unityscript', which is the altered version of Javascript that devs can use), or a variant of Python called 'Boo'. When you create a new script, the scripts are automatically given void Start()
and void Update()
methods. These methods can be removed if the dev does not need/want them, but yes, the Update()
method, if included will be called once per frame.
2) MouseDown and TouchBegin are just parts of Unity that are built in through the InputManager, a nifty tool which allows for devs to easily add control to items (whether that item be a ball or a camera). Using this InputManager, you can easily add controls using vertical/horizontal movement, jumping, shooting, and a plethora of other commands. Most movement methods are added in the Update()
method that you were curious so as to allow for fluid and continuous movement. You can use this for help on this.
3) From the Unity documentation, 'Start is called on the frame when a script is enabled just before any of the Update methods is called the first time.' More information on this can be found here.