- Home /
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?
What do you mean by 'systems'? Did you want help with how to go about javascript or c#?
can you post your "Hello world" script, i'm sure a helping hand as to why errors were thrown will come your way.
I was mostly having strange compiling errors from using Visual studio, I switched to Javascript and used the default script editor and now it works fine.
Answer by tchen · Jan 05, 2011 at 05:04 AM
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.
Answer by Landern · Jan 05, 2011 at 10:23 PM
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()
{
}
}