Answer by Dee Va
Here you can download [3RD Person shooter][1] DEMO project! :) [1]: http://u3d.as/content/unity-technologies/3rd-person-shooter/1qT
View ArticleAnswer by Dee Va
Attach to a game object.. public var SoundClip : AudioClip; private var SoundSource : AudioSource; function Awake() { DontDestroyOnLoad(gameObject); SoundSource = gameObject.AddComponent(AudioSource);...
View ArticleAnswer by Dee Va
You can FIX the resolution by calling `Screen.SetResolution` [Check this!][1] [1]: http://docs.unity3d.com/Documentation/ScriptReference/Screen.SetResolution.html hope this helps you. DEE
View ArticleAnswer by Dee Va
There you go! :) var Crosshair : Texture2D; function OnGUI(){ GUI.DrawTexture(new Rect(0f, 0f, Screen.width, Screen.height), Crosshair); } Have Fun Learning! :) -Dee
View ArticleAnswer by Dee Va
Your Code is fine! You just need to erase the first two lines! UnityEditor; Name Space System.Collections; then it works! - Dee
View ArticleAnswer by Dee Va
Well, you are using the JS Script Code in C#. Try create new JS script and past your code and it will work :) -Dee
View ArticleAnswer by Dee Va
Perhaps, you didn't installed monodevelop at the setup stage or you might moved it to the another location! try reinstalling monodevelop again (don't, if you have it in any other location) and then in...
View Article