Any advice?

Started by
13 comments, last by dreamroadproductions 6 years, 6 months ago
35 minutes ago, AidanD said:

error CS1525: Unexpected symbol `Vector3', expecting `class', `delegate', `enum', `interface', `partial', or `struct'

You’re missing the surrounding class :^)


using System;

public class ExampleComponent {
    public Vector3 ...

    public void Start() {
        // ...
    }
}


 

Advertisement
15 hours ago, fastcall22 said:

You’re missing the surrounding class :^)

Alternatively, you can go the JavaScript way which does not require the class.

🧙

Learn Unity 3d . It is the simplest, and has  best tutorials for beginners.

For the latest Unity 5 tutorials you can refer to this https://unity3d.com/fr/learn/tutorials It contains very useful tips and tricks

If c++ is your language go with Unreal. Plus: great engine, it's hard to do something ugly with it. Cons: Assets on the store are not always cheap and tutorials might be harder to find in comparison with other engines. If you choose to go with c# unity is a great tool. Free, you'll find really good assets with a very affordable price, great tutorials but, if you really choose unity, go with c#, don't try to do on javascript. My first games were made in javascript and I had to rewrite the whole thing. and good luck!

This topic is closed to new replies.

Advertisement