Programming Language

Hi after reading C# in 10 days and now are understanding the language and have a good experience i want to know what will i do now. if i want to use C# in unity do i just need to learn unity keyword and mix the keywords in the language, or do i need to learn the whole unityscript. or do i need to learn another language like javascript. im little afraid of begin learning the whole javascript because its a very big language.
{
Public class Thanks // Kristian.
}

You can get by without learning any JavaScript at all and I would recommend that. You should just learn the classes in the Unity framework as you need them in my opinion. The script reference is your friend.

The way the code is used will be specific to the unity engine (it makes life tons easier than trying to put all these built in functions together yourself).

Unity reference page is where most of us unity coders live!
This is the place to start learning unity as it will give you examples of ways to use the code. It really isn’t too tough as you can just look up the ref for what you are trying to accomplish.

http://unity3d.com/support/documentation/ScriptReference/

Hope this helps get you started in unity.

Good ok so now i understand that there is some unity keywords i need to learn and know what they do and in the same time all i need to do is to mix both C# with the unity keywords to make a script. Example:


public string message = “welcome to the game”; //// this line is C#

void OnGui() // this too
{
GUILayout.Label(message); // but this is unity script.