Answer by Lovrenc
When you create any object in blender, check your normals (draw them out). If normal comes out of the face, you will see it rendered in unity. If there is no normal, it will be transparent. As...
View ArticleAnswer by Lovrenc
Of course. This is basic functionality every programming language provides. [link][1] [1]: http://msdn.microsoft.com/en-us/library/vstudio/8bh11f1k.aspx
View ArticleAnswer by Lovrenc
Debug.Log is just a function. It is essentialy same as "print" in php, WriteLine in C# etc. The only difference is it writes directly into unity console. It logs whatever you give it. Debug.Log("Write...
View ArticleAnswer by Lovrenc
Unity doesent crash, you created infinite loop! Your "while" never exits, it just goes on and on and on. If your AutoHit doesent get target, it will search for it again and again... but nothing in your...
View ArticleAnswer by Lovrenc
[Second example in this documentation is relevant.][1] [1]: http://docs.unity3d.com/Documentation/ScriptReference/Renderer-material.html
View ArticleAnswer by Lovrenc
First, put another log line before your IF statement. If that line prints in console, your problem is in if(col.gameObject.name == "Ball"). If that is not the case, check this [documentation][1] about...
View ArticleAnswer by Lovrenc
You cannot mix languages in same script. But you can have one JS script and one C# script and so on. EDIT: you don't even need to know JS. You can do everything with c#. It is good to know it tho to be...
View ArticleAnswer by Lovrenc
Resources is **special** folder in unity ([List of special folders][1]). Unity always loads all assets from resources folder. You can move assets to different folder. Then unity will determine what he...
View ArticleAnswer by Lovrenc
you have to have your hitted variable outside of the function. The way it is now, you allways declare new hitted variable. You do not have any reference to past events. var hitted : boolean; function...
View ArticleAnswer by Lovrenc
Your "Mathf.Clamp" is not in Update function. In update you are lowering hunger every call, but your clamp is not called. var health = 100.0; var hunger = 100.0; function Update () { hunger = hunger -...
View ArticleAnswer by Lovrenc
I checked all registries wich contained word unity and found nothing either. At the end i uninstalled unity 4.3 and everything works fine now. Did you ever had problems if multiple versions are...
View ArticleAnswer by Lovrenc
I am sorry. But this is a great moment to start using [version control][1]. [1]: http://en.wikipedia.org/wiki/Revision_control
View ArticleAnswer by Lovrenc
First: this call you attempted void OnPlayerDisconnected(); could never work. When you are calling functions you only type their name and then the brackets (and in brackets arguments if the need them)....
View ArticleAnswer by Lovrenc
Since this is a learning project i dont know how much of a "spoiler" answer you want. However, your problem is in your data structure. You have one Answers list for all your questions. This wont work....
View ArticleAnswer by Lovrenc
No there is no pen tool and there needs to be none since you have one in... well illustarator :) Also, physics runs on colliders not images. You can shape colliders easily and test physics in smooth...
View ArticleAnswer by Lovrenc
Sometimes if your code cannot compile properly you will get mixed up autocomplete options. Since you know Length is a function of an array you can just type it and then try to compile and see where the...
View ArticleAnswer by Lovrenc
Your myCounter variable probably does not have the value you anticipate. [Debug][1] it in monobehaviour and see what is going on. [1]: http://docs.unity3d.com/Documentation/Manual/Debugger.html
View ArticleAnswer by Lovrenc
Case is important! Is it List (with capital L) not list (which in your scope is a variable). Usually classes are named with capital first letter (e.g. Integer, List, Vector). You can see that your...
View ArticleAnswer by Lovrenc
My guess: Since the function is "Resources.Load" i doubt that you have to type in "Resources/oil_splash.jpg" since it is already looking in resources folder. Also, image types (.jpg, .gif, .jpeg) are...
View ArticleAnswer by Lovrenc
Have a variable that collects the clicks (every time user clicks, increase it by one). Remember interval start time: `long startTime = DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond;` Now you have...
View ArticleAnswer by Lovrenc
using UnityEngine; using System.Collections; public class ScrollScript : MonoBehaviour { public float speed = 0; void Update () { renderer.material.mainTextureOffset = new Vector2(0f, -Time.time *...
View ArticleAnswer by Lovrenc
No. Unity is perfectly fine for that matter. But if the question is about the games themselves, than i'd say its only good idea if you are doing it to learn or for enjoyment.
View ArticleAnswer by Lovrenc
You could use something like that. Maybe some elements from other classes are missing, modify it for your need. On mobile you really want to reuse elements. Every time garbage collector does his job,...
View ArticleAnswer by Lovrenc
[Maybe this will clear it up.][1]> On instance methods, 'this' is implicitly passed to each method transparently, so you can access all the members it provides.> Extension methods are static. By...
View ArticleAnswer by Lovrenc
There are couple of possibilities. 1) Your value is changed by a different thread. From the snippet I suspect you are fairly new coder so it might be the code you copied/included from third party. 2)...
View ArticleAnswer by Lovrenc
1) Check out [this function.][1] 2) Search [old questions.][2] 3) Look in MouseLook script in Standard Assets, it has this implemented [1]: http://docs.unity3d.com/ScriptReference/Mathf.Clamp.html [2]:...
View ArticleAnswer by Lovrenc
You could use [raycast][1]. You can set the distance of the raycast, so if it hits object, you know it is close enough. Now if that object is one you can interact with, you can popup a note to notify...
View ArticleAnswer by Lovrenc
[Explanation of error.][1] Maybe you should try to understand it instead of getting others to do stuff for you. CountSeconds = CountSeconds + (CountMinutes * 60); //You should multiply here not sum...
View ArticleAnswer by Lovrenc
It says it all in the error message. public GameObject shipObject; void Start () { shipObject = GameObject.Find ("Default"); } The problem there is, code outside of functions is executed before any...
View Article