background preloader

Tips unity

Facebook Twitter

iTweenPath in reverse. BurgZerg Arcade. Unity Gems: Answers and Tutorials for Unity in C#, Boo and Javascript. Unity Remote. Unity Remote is an application that allows you to use your iOS device as a remote control for your project in Unity.

Unity Remote

This is useful during development since it is much quicker to test your project in the editor with remote control than to build and deploy it to the device after each change. Where can I find Unity Remote? Unity remote is available for download from the AppStore at no charge. If you prefer to build and deploy the application yourself, you can download the source here at the Unity website. How do I build Unity Remote? Local Android save data. Local Android save data Im on my simple game want to save the high score offline not using server side high score like this so how i can make it the high score save on android device.. You can use the FileStream or StreamReader etc if you code in c# in unity Rought example string _filePath= Application.persistentDataPath + "/" + Filename.Extension;//Path ! Alway's save files in in this direction(you can add folders if you like) Application.persistentDataPath + "/" + Filename; FileStream _file = new System.IO.FileStream(_filePath,FileMode.OpenOrCrea te); //Create or open our file if excist _file.write(bytes0,bytes.Length);//Write String fileShit = _file.read(...,...,...)

How to add localization to your Unity3D game - Medieval Zombies Blog - Cry Wolf Studios. Getting a localized text string in the game will look something like this: languageManager.GetValue("LocalizationKey"); Where key is the key you specified in the .resx file. Depending on the language you loaded, you will get a string in that language. I decided to go with this file system.