In unity scripting is needed to give life to your object. Suppose you have a cat type object and you want to move it from one place to another or a car you want to move or want to open door of car all this type of things can be done with the help of scripts.
All you have to do is write a code and attach that script to your object. Unity supports three programming language which are: c#, JavaScript and Boo.
I am going to stick with C# as I am familiar to that language only and all my future post related to unity will be coded using C#.
To create a script right click on project window click on create->C# script and after that give a name to your script after your script is created drag the script component to either on game object in hierarchy or to the game object inspector.,
Or select the object you want to add a script on and in inspector click on add component new script-> give name to your script and choose C# as language. Click on create and add.
After creating your script open it. Your Script first look will look like this:
Post A Comment:
0 comments: