Answer by The_Magical_Kiwi
![alt text][1] [1]: http://answers.unity3d.com/storage/temp/1409-1024.jpg The button size (10,10) is tiny. You can see a (10,10) button in the top corner of this 1024x768 screenie. Try making it...
View ArticleAnswer by The_Magical_Kiwi
http://www.youtube.com/watch?v=xnK5g2z9ESQ This is a shuriken particle system tutorial (sort of) in it the guy talks about having particles collide with a plane.
View ArticleAnswer by The_Magical_Kiwi
// Destroy ourselves Destroy(gameObject); if (Sparkles) { Instantiate(Sparkles, transform.position,transform.rotation); } if (Coin) { Instantiate(Coin, transform.position,transform.rotation); } It...
View ArticleAnswer by The_Magical_Kiwi
You get a null reference exception when your script tries to access a piece of information that isn't set to anything (it is null). I'm assuming you know what a variable is? Variables normally have...
View ArticleAnswer by The_Magical_Kiwi
If you declare a bool at the top of your script, you can then use the bool as a switch. An example will probably be clearer. //Pseudo code bool damageDone = false; if(animation["AttackingPlayer"].time...
View ArticleAnswer by The_Magical_Kiwi
Try changing the mass in the physics component and/or scale in the transform component of your objects.
View ArticleAnswer by The_Magical_Kiwi
You need to build a gui for your password prompt. A guide on building a GUI can be found here: http://docs.unity3d.com/Documentation/Components/GUIScriptingGuide.html Your code for bringing up the GUI...
View ArticleAnswer by The_Magical_Kiwi
I know this is super old, but I came across it when I was looking for the same thing this guys was and the answer turned out to be....
View ArticleAnswer by The_Magical_Kiwi
using UnityEngine; using System.Collections; public class LoadLevel : MonoBehaviour{ public int secondsToWait; int startTime; void Start(){ startTime = Time.time; } void Update(){ if(Time.time -...
View ArticleAnswer by The_Magical_Kiwi
Unity doesn't like extreme distances, I know it is a pain, but suggestion would be to scale everything down, have a unit representing a metre or 10 metres.
View ArticleAnswer by The_Magical_Kiwi
Are you sure "*L4NLevel1*" is correct and capilised exactly in that way? Best thing to do if you are just starting out and trying to debug a piece of code is to use the Debug.Log() method to print...
View ArticleAnswer by The_Magical_Kiwi
Use Vector3.Distance to get the distance between your transform and the enemies transform, if the distnace is less than your chosen threshold amount stop moving the enemeny //pseudo code...
View ArticleAnswer by The_Magical_Kiwi
Found it. It is in the color scheme editor under "Tooltip Colors".
View ArticleAnswer by The_Magical_Kiwi
When you say first and second function do you mean this? if(Input.GetKey(KeyCode.R)&&(flashlight.enabled=true)){ flashlight.enabled=false; }...
View Article