Use a Stack or List for Transform pooling ?
What the best way to pool transforms, using an Array, List or Stack ? I know if I use a list I have to check for the next available Transform (deactivated) in the list. Do stacks always keep the...
View ArticleClear previous GUI.DrawTexture
Hi, is it possible to clear a previous GUI.DrawTexture? I have 6 scripts that I use GUI.DrawTexture and I resize the texture by using Mathf.Lerp() over time, the problem is if I switch scripts before...
View ArticleDoes smooth angle make any difference in Unity?
Hi, does upping the smooth angle of a model in a 3D model package like Cheetah3D effect performance in Unity? My default smooth angle in Cheetah is set to 45, but upping it to 60 or even 80 makes a big...
View ArticleCan I make an array of scripts?
Can I make an array of scripts? I have a global variable script (GlobalVars.js) that hold all my variables for my game, two of them being the currentWeapon and the other currentWeaponNumber that holds...
View ArticleSample Assets FP bobbing
I've got a problem with the FP camera from the Sample Assets, if i walk over a plane it's fine but if I walk over a terrain it judders (video below). The problem is in this code // vertical head...
View ArticleC# access .js then I want the .js to access the C#
Hi, I have a .js that is accessed from a C# script so I placed my .js in plugins and all works fine, but I also want the .js to access the same C# script but is that possible because the .js is...
View Article.js to C# conversion
Hi, I'm using the below function to get the number from the game objects name or tag in .js What I need to do is add the same function to a C# script but I really don't know how to write this in C# Can...
View ArticleRealtime shadows iOS
Hi, I have a scene with baked light maps and realtime shadows all works fine until i build and no shadows show on the unity terrain, why? Is this a bug, Unity 4.3.4f1, iPhone5 Any ideas? Cheers.
View ArticleLerp font size, smoothly.
Hi, Is it possible to smoothly lerp a font size? Or can a font only be resized in increments of 1? This is what I have, the score pops out then returns back slower, but noticed the font only increases...
View ArticleCan you make the background of a font transparent?
Can you make the background of a font transparent or solid ? Or the text mesh ?
View ArticleTextMesh 3DText, character size
Hi, I have a 3DTextMesh that I use for the score, what I have done is placed a translucent plane behind it for contrast, I resize my text by resizing it's character size on the text mesh so when you...
View ArticleNavMesh.SamplePosition returns (Infinity, Infinity, Infinity)
What am I doing Wrong? var circleRadius : float = 20; var navHit : NavMeshHit; var navLayer : int = NavMesh.GetNavMeshLayerFromName("Default"); NavMesh.SamplePosition(transform.position, navHit,...
View ArticleVector3.Angle()
Hi, I'm trying to get the angle like below. ![alt text][1] But in 3D space not on the same level, I thought this would do it. function angleToPlayer() : float { targetDir = player.position -...
View ArticleGet current state of blend tree ?
Hi, Ok I can check to see if a animation is playing in a sub state machine like below. private var idleState = Animator.StringToHash("Locomotion.Idle"); function Start (){ _anim = GetComponent.(); }...
View ArticleSet a variable to a collider type.
I'm trying to set a variable to a collider type. When a particle hits an enemy I want it to see what type of collider it has just hit, box, capsule or sphere . I thought something like this would work...
View ArticleGUI texture and 2D Texture rotate oposite directions
Hi, I'm trying to make a GUI weapon wheel, but why with my below code does the GUI texture draw from the middle right up and around anticlockwise, and the 2D weapon textures draw from the right middle...
View ArticleChange UI GUI Image Sprite at runtime .. Unity 5 .. js
Hi, I'm trying to swap a image sprite of a UI GUI but it's not swapping, what is wrong with my code ? .. I'm getting no errors. Thanks. #pragma strict import UnityEngine.UI; private var GUIweaponSprite...
View ArticleUnityEngine.EventSystems.. Trying to figure it out .js
Hi, I'm just starting to use the new UI GUI and are converting my scripts to use the new UI. I've converted a C# script off the internet to .js (form [HERE][1]) but it does not do what I'd expected .....
View ArticleCrossPlatformInputManager not inisalizing ..
Hi, I'm trying to use the CrossPlatformInputManager in some javascript, the problem is that when called I'm getting no inputs being registered. The sample code below is what I'm testing with in the...
View ArticleThe type or namespace name `UnityEditor' could not be found
Hi, I'm using the below CrossPlatformInputInitialize.cs script and when trying to build to iOS I get the following errors, how can I correct these errors? .. Thanks....
View Article