About 52 results
Open links in new tab
  1. Unity Hub "Install failed: Validation failed" message whenever I try to ...

    Jul 19, 2023 · The issue is that then when I try to connect Unity to Visual Studio Code, it doesn't fully connect and features like IntelliSense don't work. I suspect this is because I didn't install from Unity …

  2. How to make the script wait/sleep in a simple way in unity

    There are many ways to wait in Unity. They are really simple but I think it's worth covering most ways to do it: 1.With a coroutine and WaitForSeconds. This is by far the simplest way. Put all the code that …

  3. What Language is Used To Develop Using Unity - Stack Overflow

    Feb 14, 2011 · What language does one need to use when programming with Unity? Or is it an API for many languages? I read through the docs and I guess I missed the point on the language used. It …

  4. Unity ScriptableObjects - Read-only fields - Stack Overflow

    May 12, 2022 · Unity ScriptableObjects - Read-only fields Asked 3 years, 9 months ago Modified 3 years, 3 months ago Viewed 5k times

  5. download - Unity: Editor application Install failed: Unity Hub does not ...

    Nov 8, 2022 · I have tried repeatedly without success to install a late version of Unity (2021.3.13f1 and 2021.3.12f1) from Unity Hub 3.3.0 on my MacBook Pro 16 (running macOS Monterey version 12.6). …

  6. Unity: Conflict between new InputSystem and old EventSystem

    Nov 26, 2020 · You probably tried to import a new input system package for multiple input devices compatibility. These type of errors are due to conflict between old and new input system packages …

  7. Rotate object in Unity 3D - Stack Overflow

    Jan 14, 2022 · transform.rotation = Quaternion.LookRotation(Input.acceleration.normalized, Vector3.up); But i would like to rotate object like for example screen is rotating - 0, 90, 180 and 360 degrees. How …

  8. what is the difference between Update & FixedUpdate in Unity?

    Dec 24, 2015 · From the forum: Update runs once per frame. FixedUpdate can run once, zero, or several times per frame, depending on how many physics frames per second are set in the time …

  9. What Is an IEnumerator In C# and what is it used for in Unity?

    Oct 8, 2020 · Recently I saw a tutorial of spawning objects using C# in Unity. In that the teacher used a function like this public IEnumerator CallSpawner() { yield return new WaitForSeconds(0.5f); ...

  10. Changing color of of gameObject in Unity - Stack Overflow

    Jul 23, 2015 · Changing color of of gameObject in Unity Asked 10 years, 6 months ago Modified 9 years, 8 months ago Viewed 39k times