Quantcast
Channel: Answers by "Dee Va"
Browsing index pages (88 articles)

Answer 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


Answer 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 Article


Answer 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 Article

Answer 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 Article

Answer 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 Article


Answer by Dee Va

That's weird try re-install Unity and do again..

View Article

Answer 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 Article

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 Article


Answer by Dee Va

check this http://en.wikipedia.org/wiki/List_of_installation_software :)

View Article


Answer 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 Article

Answer by Dee Va

var speed = 25; var rotateSpeed = 1; var curSpeed = 25; function Update () { var controller : CharacterController=GetComponent(CharacterController); var forward =...

View Article

Answer 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 Article

Answer 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 Article


Answer by Dee Va

Here is the Unity Third person [Tutorial][1] [1]: http://unity3d.com/support/resources/example-projects/3rdpersonshooter

View Article

Answer by Dee Va

var Player : Transform; var MoveSpeed = 4; var MaxDist = 10; var MinDist = 5; function Start () { } function Update () { transform.LookAt(Player);...

View Article


Answer by Dee Va

If it says: "Assets/Scripts/Waypoints.js(38,5): BCE0005: Unknown identifier: 'MoveTowards'." add this to your script function MoveTowards (position : Vector3) { var direction = position -...

View Article

Answer by Dee Va

var MoveSpeed : float = 2; var Player : Transform; var MaxDist = 10; var MinDist = 5; function Update () { transform.LookAt(Player); if(Vector3.Distance(transform.position,Player.position) >=...

View Article


Answer by Dee Va

var Primary : GameObject; var Secondary : GameObject; var third : GameObject; var fourth : GameObject; function Start () { Primary.SetActiveRecursively(true); Secondary.SetActiveRecursively(false);...

View Article

Answer by Dee Va

Unity3d Is only a game Engine,You Cannot Make Any Models in unity only You Can Import from other Source. This May Help's You in knowing About Unity3d Unity3d Car Tutorial [Here][1] [1]:...

View Article

Answer by Dee Va

iOS has low fillrate. If your particles cover a rather large portion of the screen with multiple layers, it will kill iOS performance even with the simplest shader. Baking your particle effects into a...

View Article
Browsing index pages (88 articles)


Latest Images