Answer by rabbitfang
Try [QualitySettings][1] [1]: http://unity3d.com/support/documentation/ScriptReference/QualitySettings.html
View ArticleAnswer by rabbitfang
*Since you improved your question and code so much (though the code still has a few style issues)...* CharacterController disables Rigidbody physics on your object (try it; an object with a rigidbody...
View ArticleAnswer by rabbitfang
This feature is called "Camera Bob". I do believe that *you* will need to create it (you could also search around for such a script as it probably already exists). Also, chek yor question for godo...
View ArticleAnswer by rabbitfang
An easier thing to do would be to use a maximum fall velocity threshold. Every frame you would check to see if the velocity would be over this and then if it is, set a flag that tells the script to...
View ArticleAnswer by rabbitfang
Unity Pathfinding was designed for 2D/3D movement with float value positions (by which I mean X/Y/Z can equal 1, 2, 3, etc. and 1.5, 1.2, etc. (with decimals)). In theory, yes you could get Unity...
View ArticleAnswer by rabbitfang
You are right in that the rotation will never hit zero exactly, due to float values being used. You also have the issue of using `transform.Rotate.y` which should give you an error but does not for...
View ArticleAnswer by rabbitfang
The Vector3 of the point that the raycast hit will be `rayPoint.point`. Read [this][1] for further information. [1]: http://unity3d.com/support/documentation/ScriptReference/RaycastHit.html
View ArticleAnswer by rabbitfang
If I had to guess, I would say that `parent` is conflicting with some variable of the `System.ValueType` class. Try renaming it. If extending `System.ValueType` does in fact make things a `struct` (I...
View ArticleAnswer by rabbitfang
Um.... "Unity tutorials in the Asset Store"? So, guides on how to use Unity, in a place where you buy (mostly) 3rd party tools for Unity? That does not exactly make sense. There are lots of [Unity...
View ArticleAnswer by rabbitfang
In Blender, you need to export the model into something Unity supports (.obj will do). Go to **File -> Export -> Wavefront (.obj)**
View ArticleAnswer by rabbitfang
Is this Unity's profiler? It seems to be so. If it is and you don't have Unity Pro (or the trial version), you should consider yourself lucky that it is giving you that because that would be a bug. If...
View ArticleAnswer by rabbitfang
You either need to use the Microsoft XNA developer's tools, or you need to buy the XBox 360 developer kit and the XBox 360 Unity license, both will cost more than you probably have. So, there is not...
View ArticleAnswer by rabbitfang
Dear madame, If you looked around more on Unity Answers, you would realize that *no one* begins their questions with "Dear sir/madame" because Unity Answers is (for the most part) handled by the...
View ArticleAnswer by rabbitfang
It depends on your platform. In Android, yes you can. However, I do not know if Unity handles the background running natively or if you need to make a plugin for the app. In iOS, not really. While yes,...
View ArticleAnswer by rabbitfang
Yes. You may. And I suggest taking the time to [learn about Unity's licenses][1] before coming on here and asking about it (and being all lazy and such). [1]: http://unity3d.com/unity/licenses
View ArticleAnswer by rabbitfang
*So this question actually has an answer on it...* Kind of. Navigation is technically a pro-only feature. However, the only part of navigation that I found that actually needs Pro is the nav mesh...
View ArticleAnswer by rabbitfang
It lags because you are printing to console every frame (times 3). Printing something to console takes a lot of time (relatively) and so when you do this every frame, things start to slow down. Try to...
View ArticleAnswer by rabbitfang
Distribution does NOT equal installation. For distribution, you can just hand out the needed files (via web, CD, etc.). Since you ask about distributing as a downloadable, that would be over the...
View ArticleAnswer by rabbitfang
Either one of those would work, and can be done with pretty good realism. The best option depends on a number of factors, mainly what is the visual quality and style of your game and how many resources...
View Article