C# is a programming language compiled with .Net Framework and mostly used in Visual C#. It is an object orientated language and was designed and developed by Microsoft which first appeared in 2000. For this blog, we will be talking about C# in Unity (A game engine which we will be using).
This is an example of what the scripts look like:
using UnityEngine; //The Unity engine (Engine we are using)
using System.Collections;
public class ScriptName : MonoBehaviour {
//Start function void Start () {
}
}
No comments:
Post a Comment