Is Unityscript/Javascript discontinued?

According to some comments on the Unity forums: One user said back in February, “UnityScript has already been abandoned. Just no one has told the marketing team yet.“ Then just today (at the time of this post), a Unity representative replied, “UnityScript will continue to work in 2017.2. We removed the menu item because we … Read more

How to speed up the build and run process in unity for mobile devices iOS/Android [closed]

Unity Remote 5 is designed to do. It reduces the amount of time you deploy your app to your iOS or Android device during development. You can get the iOS version here and the Android version here. It supports the following sensors: Touch Accelerometer Gyroscope Webcam Screen orientation change events The latest version which is … Read more

How to find the size of Object and show it on screen [closed]

You can get your object size like this: public double GetObjectSize(Object Obj) { using (var m = new System.IO.MemoryStream()) { System.Runtime.Serialization.Formatters.Binary.BinaryFormatter b = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter(); b.Serialize(m, Obj); double size = Convert.ToDouble(m.Length); return size; } } But consider that not all objects are serializable. And it will not serialize nested objects too deep.