Answer by team_eden
On the same subject when you instantiate the clone, set the name of the clone to the name of the referenced GameObject, and simply add the number of your array loop, or keep track of your...
View ArticleAnswer by team_eden
Try to simulate the combined effect on one physic material? You can also script your player to act a certain way when it hits the terrain with a terrain tag, and modify your movement accordingly....
View ArticleAnswer by team_eden
It is possible the errors in the files are so bad they are crashing the pre-complier, which would otherwise be spitting out more useful errors. Try fixing up some of the loose code, or starting a new...
View ArticleAnswer by team_eden
Please post your solutions as an actual answer so others can reference this in the search indexes. Thank you ------------------------------------------ In the Unity 'Color' struct, values for r, g, b,...
View ArticleAnswer by team_eden
Your answer May be found here: http://answers.unity3d.com/questions/486356/why-do-i-get-nan-values-in-this-code.html
View ArticleAnswer by team_eden
Alternatively you can turn off the object's mesh renderer, and collider, until the particle cycle finishes; then, destroy the object. -TE
View ArticleAnswer by team_eden
var texturesIn: Texture2D[] =new Texture2D [15]; var textureInSplats:SplatPrototype[] =new SplatPrototype[1]; function changeTexture(inTexture:int) { textureInSplats[0] = new SplatPrototype();...
View ArticleAnswer by team_eden
TreeInstance contains a variable called 'lightmap' which is a type Color. Set this to something like Color(0.5,0.5,0.5,1.0); Works now. And this answer trumps all others I have found up til now. My...
View ArticleAnswer by team_eden
I am having the same problem. When trees get to close to the camera field of view, they suddenly disappear when the trunk of the tree gets out of view. All of a sudden, the leaves disappear, just...
View ArticleAnswer by team_eden
Use the new UI system, and use a slider with stretching anchors. In fact, as I can probably tell your trying to make some sort of HP style menu bar here, just set the colors/widths, and your set!...
View ArticleAnswer by team_eden
Because I'm trying to stay in a good mood today. And also, more people should post in JAVA! This script allows you to set both a click, and double right click, while differentiating if the left was...
View ArticleAnswer by team_eden
> var lastDirY:float=transform.eulerAngles.y;>> if(inputZ == 0 || inputX == 0) { > transform.rotation.y=lastDirY; } Cheers!
View ArticleAnswer by team_eden
then the position of your game object is reaching behind the cube? you need to set an anchor for your ray which is not part of your main object, as it apparently reaches farther away than the position...
View ArticleAnswer by team_eden
You need to go into Unity>Edit>Project Settings>Quality and increase your "Pixel Light Count" to something like 100. Good luck
View ArticleAnswer by team_eden
First you will need a 2nd image of the same size/resolution as a dummy image. Dummy image is the one that will be on your level floor. Now, the box that you show representing Where to color in, you...
View ArticleAnswer by team_eden
Attach this to your cube. Also reference http://docs.unity3d.com/ScriptReference/Object.DontDestroyOnLoad.html function Awake () {DontDestroyOnLoad (transform.gameObject); }
View ArticleAnswer by team_eden
Unity has native libraries that must be included to function on your platform. Is one possible reason. GL
View ArticleAnswer by team_eden
Add to your Canvas a component type Canvas Renderer, and set the resolution manually. This will scale the way you describe when done properly. You need to reference the unity docs regarding UI.Canvas...
View ArticleAnswer by team_eden
There are assets in unity available for free such as 'Prototyping' which allow you to create simple shapes inside the editor. I suggest using this fashion, until you are satisfied, then start making...
View ArticleAnswer by team_eden
This is not your fault, the server is simply confused by so many requests from the same ip address. I can verify this by connecting to the asset store from a different device at the same time...
View ArticleAnswer by team_eden
For starters gameObjectChild.transform.SetParent(parent.transform, true); should be gameObjectChild.transform.parent=parent.transform; Instead of referencing the parent constantly, do it once, probably...
View ArticleAnswer by team_eden
You can drag and drop items into exposed variables within the inspector, and they will stay persistent on play as long as they are part of the same prefab. You can try copying the component during...
View ArticleAnswer by team_eden
Your raycast may be hitting a collider attached to the player, be sure that it is ignoring all the player and gun layers! That is my 2 cents, good luck!
View ArticleAnswer by team_eden
Does this help? // Set this to the gameObject which contains the animation component var objectWithAnimationComponent:GameObject; var desiredAnimation: String="AnimationName"; function Update() {...
View ArticleAnswer by team_eden
You could always take screen shots of a real model on top of a blue screen, and take screen captures as you rotate the model appropriately. Position the camera in your viewer as you would like it to be...
View ArticleAnswer by team_eden
You can set the pickup to enabled again, it just has to be done from a separate object. Each time you create an object to be disabled, register it with a higher up parent, and when it needs to be...
View ArticleAnswer by team_eden
Once you initiate your attack sequence, wait for the first collision, then turn your sword collider off until the attack sequence completes. Then back on again. Also make sure you do not detect sword...
View ArticleAnswer by team_eden
Increase your thumbstick sensitivity threshold. Refer to your native library documents for how to include into unity. Something like GameState.GamePad.Thumbstick.Left.SensitivityThreshold=0.1; //...
View ArticleAnswer by team_eden
You should be careful, and Particular, when and how you use collisions. Certain conditions need to be met, depending on which style of detection your going to use. Firstly, make use of debug.log, and...
View ArticleAnswer by team_eden
Just add a script to your camera, and drag your ball as the target. var target:GameObject; // drag your ball onto this function Update() // set gameObject position the same as target, follow behind...
View Article