Getting references to children objects.
I'm working on a 2D game that will show several cars with 2-3 text signs on each car (license plates, company names,...). I'm going to have a prefab with the car sprite and the text signs as children....
View ArticleWeird texture stretching problem.
I'm making a 2D game and struggling with a weird problem with using texture on a quad. The actual scenario is more involved, but I was able to reduce it to these simple steps: 1. Create a 512x512...
View Article"Compiling Please Wait" for over 10 seconds.
After changing even one line of C# code in MonoDevelop, it takes Unity about 10 seconds to recompile my project. I understand that this is probably normal because the project is pretty large at this...
View ArticleStandalone Frame Rate.
When building a PC standalone, is there some place to specify target frame rate? The reason why I'm asking this is because I noticed that while in the Editor, my game's FPS fluctuates between 90 and...
View ArticleA thin line on the edge of a quad.
Hello. For a 2D game scrolling background, I use a quad with a texture. The texture image is exactly 2048x512. For some reason when the texture is applied to the quad, there is very thin line that I...
View ArticlePlacing Several Buttons Inside a Panel.
I'm trying to place several(3 to 5) buttons on a UI panel. They should be located equidistantly, as shown below. The layout should adjust automatically if a small number of buttons are added or...
View ArticleHow to Turn off LZMA compression?
LZMA compression is great, but slows down development Web Player builds. Is it possible to temporarily turn it off? ![alt text][1] [1]: /storage/temp/40647-lzma.png
View ArticleAddListener to a Toggle.
Hello. I would like to attach a listener to checkbox: void Start () { GameObject cb1 = (GameObject)Instantiate(cbPrefab); Toggle t = cb1.GetComponent(); t.onValueChanged.AddListener(() =>...
View ArticleDebugging inside web player.
My game works fine inside the Editor, but not in Unity web player. The error messages that web player displays are not very helpful: ![alt text][1] Is there a way to get more information about web...
View ArticleWebGL build gets stuck.
To try WebGL build on Unity 5, I created a simple project with a scene that only has a camera. The build doesn't go beyond `"convert and compile scripting files"` Anybody else has this issue?
View ArticleDialog box positioning.
I would like a dialog box to: - take up 30% of the game width - be centered - preserve its aspect ratio Does anyone have an example of how this can be achieved with uGUI regardless of the game...
View ArticleKeyboard-controlled dialog box.
If a game is running on a desktop without a mouse, how can I select and press a button in a dialog box that has two or more buttons? Is there any sample code or an Asset Store plugin that would do...
View ArticleiOS: anti-aliasing causes exc_bad_access exception.
Hello. I'm getting an exc_bad_access exception in iOS when anti-aliasing is turned on. The exception happens in UnityBlitToBackBuffer. Does anybody know how to fix that without turning anti-aliasing...
View ArticleCan't debug an iOS game.
Hello. I'm trying to debug a game in iOS. When I attempt to attach the MonoDevelop debugger, it shows "Could not connect to the debugger" message. I use a develop build and the Profiler works fine. So...
View ArticleAnimator Scripting Tutorial.
I'm trying to follow this lesson, but I can't locate the assets used in it. Are they available anywhere? http://unity3d.com/learn/tutorials/modules/beginner/animation/animator-scripting
View ArticlePossible to delete unneeded presets from Game View?
Is it possible to delete unneeded presets from the Resolutions selector in the Game View?
View ArticleDraw Calls Not Reduced After Adding Texture Atlas.
I'm working on a simple mobile 2D game. Currently there are 20 draw calls. To minimize the draw calls number, I put all the graphics into a Texture Atlas using the Sprite Packer. I expected a reduction...
View ArticleTexture atlases and materials don't mix?
Is it possible to use an image from a texture atlas in a material? If not, why?
View ArticleCan't Set Particle System TextureSheetAnimationModule.
I would like to set Particle System TextureSheetAnimationModule.rowIndex. Here's the code based on Unity reference...
View ArticleGoogle app signing
Has anyone been able to update an existing app on Google Play after enrolling in Google app signing program? I have *private_key.pem* and *upload_cert.der* from Google, but how do I add them to a Unity...
View Article