Thursday, 1 September 2016

What is C# ?

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 () {
    }

//Update function void Update () {
    }
}


Unfortunately this script wouldn't do anything, as we haven't actually typed anything into it.


No comments:

Post a Comment