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

    Jul 19, 2023 · Unity Hub is missing permissions, and says "user did not agree to the UAC prompt and the process was not started". How can I fix this? Here are the relevant logs: …

  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 …

  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 …

  4. Rotate object in Unity 3D - Stack Overflow

    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. …

  5. 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 …

  6. Unity - how to make material double sided - Stack Overflow

    Unity - how to make material double sided Asked 9 years ago Modified 2 years ago Viewed 107k times

  7. Newest 'unity-game-engine' Questions - Stack Overflow

    Unity Android crash with SIGSEGV in libil2cpp.so on Mali-G52 (Nokia T20, Android 13, Unity 6000, IL2CPP) I have a Unity Android game that crashes on a specific device with a native …

  8. unity game engine - Accessing a variable from another script C

    You first need to get the script component of the variable, and if they're in different game objects, you'll need to pass the Game Object as a reference in the inspector. For example, I have …

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

    Dec 24, 2015 · FixedUpdate is used for being in-step with the physics engine, so anything that needs to be applied to a rigidbody should happen in FixedUpdate. Update, on the other hand, …

  10. 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