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