- Home /
an UP-TO-DATE menu tutorial
I have been for a while now looking for a way to make a cool main menu. the big problem is that they are all out of date!!! does anybody know a tutorial that was made with unity 4.x in the last few months?
Answer by Owen-Reynolds · Jun 08, 2013 at 06:24 PM
The menu system(s) haven't changed from 3.x to 4.x, so the old tutorials should still be good(*). I upgraded something with a freakishly complex menu system from 3.x to 4.x and it worked the same.
At some point, I think, the Unity team claimed they would implement a simpler/faster menu system in 4.0. But it wasn't done. Maybe the Asset Store approach is just better.
(*) Tutorials are the lowest form of instruction.
I've tried some of them, but the scripting is different...
Unity has always had scripts in 2 different languages: javascript (`var x : int;`) and C# (`int x;`).
And there are plenty of questions "How can I translate this C# script into javascript" or "How can I use this javascript script with another C# one?" (it can be done, I think.)