Answer by Dee Va
Here is the Unity Third person [Tutorial][1] [1]: http://unity3d.com/support/resources/example-projects/3rdpersonshooter
View ArticleAnswer by Dee Va
hmm.... i have finded myself :D patrol function added in the top function Update and that worked fine :D function Update () { if(Health <= -100.05){ Destroy(gameObject);...
View ArticleAnswer by Dee Va
var jumpSpeed: float = 5.0; var speed: float = 6.0; var rotateSpeed: float = 60.0; var gravity: float = 10.0; // gravity acceleration private var vSpeed: float = 0; // store vertical speed in a...
View ArticleAnswer by Dee Va
var time : float; function Update() { time -= Time.deltaTime; if(time < 0.0) { GetComponent(scriptname).enabled = true; } } I think this Work's :D
View ArticleAnswer by Dee Va
var speed = 25; var rotateSpeed = 1; var curSpeed = 25; function Update () { var controller : CharacterController=GetComponent(CharacterController); var forward =...
View ArticleAnswer by Dee Va
Add the Speedometer script to your Car and in the inspector, add the dial and and needle texture's, then adjust screen pos... Then set the stop angle... then top speed.. then angle speed... Test...
View ArticleAnswer by Dee Va
check this http://en.wikipedia.org/wiki/List_of_installation_software :)
View ArticleAnswer 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 ArticleAnswer by Dee Va
In windows operating system you find here C:\Program Files\Unity\Editor\Standard Packages
View ArticleAnswer by Dee Va
download this www.gotow.net/andrew/unity/CarTutorial.zip I THINK THIS HELPS YOU....:)
View ArticleAnswer by Dee Va
Use Application.persistentDataPath or Application.temporaryCachePath as a prefix to your files. try it......:)
View ArticleAnswer by Dee Va
Application.temporaryCachePath to file as a prefix. hope this helps you....:)
View ArticleAnswer by Dee Va
follow these steps:- extract at desktop(for your easy understanding) and open the unity.exe,click on file-->open project-->click on openother-->then locate the fps tutorial which is on the...
View Article