x


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?

more ▼

asked Jan 05 '11 at 01:49 AM

Jacob 5 gravatar image

Jacob 5
7 2 2 6

What do you mean by 'systems'? Did you want help with how to go about javascript or c#?

Jan 05 '11 at 02:03 AM zannghast

can you post your "Hello world" script, i'm sure a helping hand as to why errors were thrown will come your way.

Jan 05 '11 at 10:15 PM Landern

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.

Jan 06 '11 at 03:19 PM Jacob 5
(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first
  • 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.

more ▼

answered Jan 05 '11 at 05:04 AM

tchen gravatar image

tchen
184 6

(comments are locked)
10|3000 characters needed characters left

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

    }
}
more ▼

answered Jan 05 '11 at 10:23 PM

Landern gravatar image

Landern
2.2k 2 12

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x397
x298
x62
x39

asked: Jan 05 '11 at 01:49 AM

Seen: 977 times

Last Updated: Jan 05 '11 at 01:49 AM