Unable to open scripts
Whenever I try to open a script for editing, I get an "Unable to open Assets/Scripts/PlayerController.cs: Check external application preferences" error. - This is a new script. I have not moved it in...
View ArticleHow to export to wind 8...getting error.
I have windows 8.1 and latest unity 4.5. I have a game that I can export out to android, windows 86 and 64 bit, and other platforms. However, I am having a issue exporting to windows 8 or 8.1. It gives...
View ArticlePSM problem
Hi everyone, I have a PlayStation Vita with the Development Assistant on it. This morning, there was an update for it. I downloaded the update and now all my builds are saying they have an unknown...
View ArticleDataset is null
Hi All, So I've got a scene with 9 trackers in it. There's one main scene that augments content and the other 8 just augment a logo that links to other scenes (like a button). When I load my scene, it...
View ArticleHow do I fix this c# script for jumping
I am making a jumping script in c# for my platformer. I already have a script for moving left and right, but this script doesn't work it makes the ball roll towards the camera instead of jumping up....
View Articlecompile error. does not denote a valid type.
So I am trying to export out a game to windows 8 store. It works fine in android, windows 7 and so forth. There are no errors except when I export to windows store. I THINK the issue my be the order at...
View ArticleGUItexture help me
Hello I have problem with GUItexture someone can help me? this is the error ![alt text][1] and this is my code ![alt text][2] Thanks :) [1]: /storage/temp/35302-error.jpg [2]:...
View ArticleGot the dreaded "GetThreadContext failed" error. Wat do?
So I've been doing some college work in unity with no problems and switching between my two computers just fine. A few days ago Unity on my desktop crashed on a project (nothing much, just a sprite and...
View ArticleOperator '+' cannot be used with a left hand side of type 'Object' and a...
I'm trying to create an infinite runner and am seeing if I can translate some of the C# codes into Javascript. I've currently run into a problem that I can't really seem to fix. I get that error for...
View ArticleAn object reference is required to access non-static member...
I'm very confused as to why this won't work, all I'm trying to do is make the box-collider drop down a little when my slide function is called, everything else is working fine but if anybody can...
View Articlewindows store 8.1 game crashes on exit
Hello Everyone! When my Unity3D Windows 8.1 game exits, it crashes and throws this message when I'm debugging it. ![alt text][1] [1]: /storage/temp/35421-unity3d_win8_error.jpg I'm targeting 8.1 using...
View Articlecan't uninstall unity webplayer, any solutions?
I get over 20 error boxes when I try to uninstall unity webplayer. The same error boxes happen when I try to install/update the webplayer. Any solutions, I'm stuck and I've been searching for some time...
View ArticleMissing component exception in unity. there is no animation component...
However, i have made not references t this component in my script. all i try to do is edit an animator float. this is my script: #pragma strict internal var animator : Animator; var dead : float; var...
View ArticleHow to fix my code? (Player death + Respawn)
Again, this was declined by the moderators overnight, so if this is against the rules, sorry, but I don't see why this would be rejected. (Last time it happened it was overnight as well) Okay, so I...
View ArticleError 'Language feature not implemented'
Language feature not implemented: Ambiguous(Void Pause(),Void Pause(Boolean)) Hey, I get this error and I don't know what to do. Can anyone help? #pragma strict var showFire : boolean = false; function...
View ArticleDoes Unity really require access to Google Analytics to run?
Running Unity.exe, I get this error message dialog, and the application closes after I dismiss the popup: Error loading page / Couldn't resolve hostname. In the log I see this: LICENSE SYSTEM [20141119...
View ArticleHow do I change the text of a gui image text
I'm trying to change the GUI's Text but the script gives me this error ![alt text][1] [1]: http://gyazo.com/943e6f7275671cd5934537aee6352273 and heres my script #pragma strict static var currentScore :...
View ArticleHow do I fix this really wierd parsing error?
Here is the code: using UnityEngine; using System.Collections; public class PaddleScript : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void...
View Articlei want to make my character die after some time where is the problem
#pragma strict var Health : float = 100 ; function Update ( ){ Health -= 1 * Time.deltaTime ; if (Health == 0);{ function Destroy("Player"); { Destroy ("Player"); Destroy (this); Destroy (rigidbody); }...
View ArticlePhysics.OverlapSphere error
I turned grounded = Physics2D.OverlapCircle(groundCheck.position, groundedRadius, whatIsGround); To this: grounded = Physics.OverlapSphere(groundCheck.position, groundedRadius, whatIsGround); And I got...
View Article