Answer by Narv
you're halfway there in that you know to use the WWW class (at least... I assume you meant that and not just referring to WWW in the internet...)...
View ArticleAnswer by Narv
So you would need a plane for each character that you want selectable. Then you just swap textures (or UV offset if you are using an atlas with smaller character images). Then each plane would get a...
View ArticleAnswer by Narv
Your question is a bit vague but I assume that you aren't getting the highScore value to equal 500? Did you try using PlayerPrefs.Save() to make sure it saves properly?
View ArticleAnswer by Narv
You'll want to use Camera.ScreenToWorldPoint(Input.mousePoision) http://docs.unity3d.com/Documentation/ScriptReference/Camera.ScreenToWorldPoint.html You'll get the point in the world space that the...
View ArticleAnswer by Narv
AudioClip doesn't except a string for a value to the variable clip http://docs.unity3d.com/Documentation/ScriptReference/AudioSource-clip.html You will need to set an AudioClip object in the inspector...
View ArticleAnswer by Narv
It looks like you are trying to change the way the force is applied, correct? AddForce has a 2nd optional parameter you can use...
View ArticleAnswer by Narv
Instead of having each prefab keep track of all the other prefabs of the same name (which seems to be what you are trying to explain), you could use a single script to manage all prefab instances. Then...
View ArticleAnswer by Narv
Going off of what little you provided, i'd say: 1.) As getyour411 mentioned, how are you setting up the squadrons? If you are using lists/arrays: Each unit most likely has a management script on them,...
View ArticleAnswer by Narv
ughhhhhhh.... I assume you're trying to do this in code? Since you haven't said what you're doing to solve the issue. Try making an animation for this and attach the .anim files to the coin "parts".
View ArticleAnswer by Narv
Check out Prime 31's website. They have tons of stuff for all the mobile platforms: http://prime31.com/plugins# Only issue is it gets expensive fast if you want to buy a lot.
View ArticleAnswer by Narv
Is this 2d or 3d? also, place an collided in each key object and a script that on the update function checks the input.tocuhes. Then raycast on touch using camera.main.screenpointtoray and see what...
View ArticleAnswer by Narv
are you ever calling the HPLose function? I think you may be looking for the OnCollisionEnter(Collision col) method for what you're doing unless you are calling the HPLose function somewhere else you...
View ArticleAnswer by Narv
some sanity checks first: * does your rocket have a collision on it? box collider, sphere, etc? * you are using a variable called terraincollide but never set the value to true but then you are...
View ArticleAnswer by Narv
I assume you want the spotlight to follow your mouse cursor on the floor or ground, correct? if so, look up the function ScreenPointToRay() in Camera.. also Physics.Raycast. You will get a ray from...
View ArticleAnswer by Narv
for(float t = 0.0f; t < 1.0f; ) { t += Time.deltaTime; transform.position = Vector3.Lerp(orgPos, dstPos, t); transform.rotation = Quaternion.Slerp(orgRot, dstRot, t); yield return null; }
View ArticleAnswer by Narv
You could check the remaining distance to the path end using: http://docs.unity3d.com/Documentation/ScriptReference/NavMeshAgent-remainingDistance.html and then if it is within a certain threshold from...
View ArticleAnswer by Narv
you could also just set the gameobject to inactive. Will the user pass the object again in the future? (such as a wall obstacle) If so you could just keep a reference to that object and then move the...
View ArticleAnswer by Narv
by button do you mean the GUI.Button() function in the OnGUI() method? If so then you just wrap it in an if statement and inside the if statement you put the code to move your character. void OnGUI() {...
View ArticleAnswer by Narv
Is it because your if statement is outside of a function definition? or are you defining the function inside another function? can't really tell from what you posted, could be a couple different...
View Article