How do I get set up with a programming language and everything.

I'm mostly looking to hear what your systems are so I can just copy it, right now I've been trying this thing with Unity and Visual studio and a lot of various patches to attempt to get all the zombie like programs running. When I tried to make a "Hello world" script there were ten error messages and I'm thinking that there has to be a simpler way to make things work. What's your set up?

  • Unity3D

  • MonoDevelop (comes with Unity3D)

You don't NEED visual studio. If you really prefer its intellisense, then grab Visual Studio Express C# 2008 as I think only that one runs without much fuss.

Here is an example of a Hello World script(must be attached to scene object) through debug.log in c#. You will see hello world in the console window or in the lower left hand corner of the unity window.

using UnityEngine;

using System.Collections;

public class HelloWorldScript : MonoBehaviour
{

    // Use this for initialization
    void Start()
    {
        Debug.Log("Hello World");
    }

    // Update is called once per frame
    void Update()
    {

    }
}