Answer by Graham Dunnett
You've read the [docs][1], right? [1]: http://docs.unity3d.com/Manual/PlatformDependentCompilation.html
View ArticleAnswer by Graham Dunnett
A quick google search for subtractive colours took me to: https://github.com/camme/ryb-color-mixer/blob/master/ryb-color-mixer.js
View ArticleAnswer by Graham Dunnett
Well, if one button is pressed subtract a value from x, and if the other button is pressed, add a value to x.
View ArticleAnswer by Graham Dunnett
Posting to twitter using their REST api is documented here: https://dev.twitter.com/rest/reference/post/statuses/update I believe that `WWWForm` will work for you since it causes [WWW][1] to create a...
View ArticleAnswer by Graham Dunnett
Yes, I can guide you. Visit Google, type "ITMS-9000" and press the Search button. Shouldn't take 8 hours. (The first hit seems to have a working solution.)
View ArticleAnswer by Graham Dunnett
http://forum.unity3d.com/threads/car-move-automatically-script-for-mobile.288524/
View ArticleAnswer by Graham Dunnett
Look at http://docs.unity3d.com/ScriptReference/Input.GetButtonDown.html. You'll see that `GetButtonDown()` looks for buttons on the keyboard or controller.
View ArticleAnswer by Graham Dunnett
Have you read the [docs][1]? If you have then you'll know that the functions you are using return bool and not a pixel position. Maybe you want to use `Input.mousePosition`. [1]:...
View ArticleAnswer by Graham Dunnett
Create a web site, which has REST API support. Implement a database on that web server to store the league table. Then have your game call to the REST functions to record the results.
View ArticleAnswer by Graham Dunnett
Your serial number will be on the email you received when you purchase your Pro license. (If you have not got a Pro license, then just activate free on your new machine.) Also, I believe if you log in...
View ArticleAnswer by Graham Dunnett
No, Unity cannot load scenes from the file system. Asset Bundles is the way to go, assuming you have a Pro license.
View ArticleAnswer by Graham Dunnett
In your `OnGUI()` code look at the string which is being entered into the TextField, and remove any characters that are not digits.
View ArticleAnswer by Graham Dunnett
Yes, there is a parsing error. You don't have a line 32, so the compiler has got confused. If you search for the error number on Google, you'll get loads of hits on this site which will help you out.
View ArticleAnswer by Graham Dunnett
The user guide is documented in MarkDown. The Script reference is a custom XML file.
View ArticleAnswer by Graham Dunnett
Read the docs about `GUIStyle` and use the version of `GUI.Label` which has 3 arguments.
View ArticleAnswer by Graham Dunnett
Use `WWW` to talk to your server and have your PHP talk to the MySQL database and retrieve the data.
View ArticleAnswer by Graham Dunnett
http://answers.unity3d.com/questions/828689/resource-compilation-failed-failed-to-recompile-an.html http://answers.unity3d.com/questions/724208/failed-to-recompile-android-resource-files-see-the-1.html
View Article