Answer by murkantilism
Attach a [collider object](http://docs.unity3d.com/Documentation/ScriptReference/Collider.html) to the player and the cube. Write a script that you will attach to the cube. The script should check for...
View ArticleAnswer by murkantilism
No, you shouldn't need to edit the model. What vector did you give the lookat function? Read [the documentation](http://docs.unity3d.com/Documentation/ScriptReference/Transform.LookAt.html) for the...
View ArticleAnswer by murkantilism
Select the object you want to zoom to in the editor's hierarchy and hit the "F" key on your keyboard. Unfortunately, there is no way to set the editor to open at that point every time it opens. Usually...
View ArticleAnswer by murkantilism
I'm not a guru on Unity garbage collection by any means, hopefully someone more knowledgeable can confirm: I don't think setting variables to null with help with garbage collection. It won't entirely...
View ArticleAnswer by murkantilism
*At a high level:* When the player talks to another character, you'll need a way to communicate that conversation. I suggest creating a GUI that opens up when a player talks to a character. In that GUI...
View ArticleAnswer by murkantilism
I can't help you correct the animation code if you remove it... Generally speaking, once the player is within whatever distance you want, simply use animation.Play(). Read the [animation...
View ArticleAnswer by murkantilism
So you want the button to become larger when the mouse scrolls over it? Or it's becoming larger and you don't what it to? Assuming you *want* it to become bigger, use...
View ArticleAnswer by murkantilism
Please format your code correctly, this is nearly unreadable. Also, be more specific in your question, such as which line is giving you errors. My guess is this doesn't work probably because of a...
View ArticleAnswer by murkantilism
Is there a real question here? Are you just asking for high level advice? UnityAnswers is **not** a place to come and say "Please do all the work for me & write me a script that does X Y Z." My...
View ArticleAnswer by murkantilism
Is there a real question here? Are you just asking for high level advice? UnityAnswers is **not** a place to come and say "Please do all the work for me & write me a script that does X Y Z." My...
View ArticleAnswer by murkantilism
This is because Unity's code editor (MonoDevelop) uses the .NET framework, which requires Windows to be installed on your USB (impossible). A workaround would be to use Notepad, Notepadd++, or another...
View ArticleAnswer by murkantilism
Those are parenthesis, not brackets. { } <-- These are brackets. Parenthesis are used define methods, and invoke method calls. They are used to differentiate methods from other types of code....
View ArticleAnswer by murkantilism
It's spelled OUYA. Check out these websites for info on your question, this forum isn't the right place to ask this: * [One](http://unityouya.com/) *...
View ArticleAnswer by murkantilism
When you instantiate a gameobject, it will not have the variables you set in the hierarchy. That simply isn't how it works. You'll have to write some code that "spawns" the objects with the correct...
View ArticleAnswer by murkantilism
After poking through NVIDIA's GitHub code I found this: https://github.com/CMZCODE/GamePadSampleUnity/blob/master/ShieldControls/Assets/PadController.cs Looks like the mapping is as follows: X =...
View ArticleAnswer by murkantilism
This tutorial on implementing player swimming might be helpful to you: [Click me!][1] And if you're curious the full tutorial series can be found here: [Click me!][2] In my opinion making...
View ArticleAnswer by murkantilism
Do you have Unity Pro? This could be done fairly easily with Pro, [see these](http://answers.unity3d.com/questions/348781/blur-window.html) two [unityAnswers...
View ArticleAnswer by murkantilism
In your game, does cratertex.GetPixels() consistently return the same sized array? That's where the issue might be. If cratertex.GetPixels() returns, say, an array of size 1,000 each and every time...
View ArticleAnswer by murkantilism
First double check that the object's tag is spelled "pickup", I think this is case-sensitive. If a typo isn't the error, double check that your script is actually attached to a GameObject inside the...
View ArticleAnswer by murkantilism
I'm confused, what are you asking for help with? Selecting any sort of units, or just your own units? **My suggestion would be:** - OnMouseEnter, create a plane (or cube if your RTS game has different...
View Article