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

Declaring a new instance of a class in C#

Pretty easy to google… http://forum.unity3d.com/threads/119537-You-are-trying-to-create-a-MonoBehaviour-using-the-new-keyword It’s to do with what Boids inherits. New is apparently not the correct way to instantiate the object, it should be instatiated using the unity framework gameObject.AddComponent<Boids>()

Can’t change GameObject color via script?

Here is your problem: new Color(0f, 0f, 0f, **255f**); The Color constructor parameter takes values from 0f to 1f but you are passing 0f to 255f range value to it. That should be: colorToFadeTo = new Color(0f, 0f, 0f, 1f); If you want to use the 0 to 255 range then you must divide it … 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

tech