September 2013
Beginner
292 pages
6h 19m
English
Unity will synchronize with MonoDevelop the first time you tell Unity to open a file for editing. The simplest way to do this is just double-click on LearningScript in the Scripts folder.
LearningScript:
MonoDevelop started with LearningScript open, ready to edit.
Notice line 4 in the previous screenshot:
public class LearningScript : MonoBehaviour
The class name LearningScript is the same as the file name LearningScript.cs. This is a requirement. You probably don't know ...