Answer by Graham Dunnett
There is no html way to say "tell me all the images that live at a url". If the images are linked form an html page then you can read the html of that page and then find the img tags it contains, and...
View ArticleAnswer by Graham Dunnett
It doesn't work outside of the editor because the function you use is documented as only working in the editor, see: http://docs.unity3d.com/ScriptReference/Resources.LoadAssetAtPath.html Maybe you...
View ArticleAnswer by Graham Dunnett
Read up on shaders, and [Shader Lab][1] in Unity. [1]: http://docs.unity3d.com/Manual/SL-Reference.html
View ArticleAnswer by Graham Dunnett
JPEG is a source format. Your artwork is converted by Unity into a format that the GPU on the device can work with. Tell Unity to use compressed texture formats to reduce the size of the build.
View ArticleAnswer by Graham Dunnett
Visit the [Learn][1] section of the website. [1]: http://unity3d.com/learn
View ArticleAnswer by Graham Dunnett
http://docs.unity3d.com/ScriptReference/Physics.SphereCast.html
View ArticleAnswer by Graham Dunnett
You reply to the email that you received containing the bug number.
View ArticleAnswer by Graham Dunnett
http://forum.unity3d.com/threads/cant-build-apk-urgent-help-needed-solved.254106/
View ArticleAnswer by Graham Dunnett
Mobiles use tile rendering GPUs. Your 2-tri quad needs to be split up into every tile.
View ArticleAnswer by Graham Dunnett
The `MonoBehaviour` class has a member called `gameObject`. I suspect your line 12 and 27 are referring to the `MonoBehaviour` `gameObject` and not your member of `Test` which has the same name, and so...
View ArticleAnswer by Graham Dunnett
var j : int = Input.touchCount; if (j > 2) j = 2; for (var i = 0; i < j; i++) {
View ArticleAnswer by Graham Dunnett
See http://msdn.microsoft.com/en-us/library/windows/apps/br230232.aspx for a list of all the .Net APIs that are supported on WSA. Note that this is a smaller set of APIs to the ones you might be...
View ArticleAnswer by Graham Dunnett
http://docs.unity3d.com/ScriptReference/Renderer.OnBecameVisible.html
View ArticleAnswer by Graham Dunnett
Use [PlayerPrefs][1]. [1]: http://docs.unity3d.com/ScriptReference/PlayerPrefs.html
View ArticleAnswer by Graham Dunnett
http://forum.unity3d.com/threads/roll-a-ball-with-android.184656/
View ArticleAnswer by Graham Dunnett
Use a ray cast to work out which object was touched, then apply the swipe to that object.
View ArticleAnswer by Graham Dunnett
http://forum.unity3d.com/threads/unity-4-5-out.249695/#post-1690138
View Article