About 51 results
Open links in new tab
  1. 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 …

  2. Unity Hub "Install failed: Validation failed" message whenever I try to ...

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

  3. 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. How can I do it …

  4. Unity, rotating a Vector3 along an axis - Stack Overflow

    Dec 22, 2022 · For example, I have a Vector3 and I waant to rotate it relatively Y-axis (Vector3.up). Can I do it using built-in methods, or should I use coordinate geometry and trigonometry?

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

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

    I have even read everything in unity website but I still can’t do it. I know how to access another object but not another variable. This is the situation : I’m in script B and I want to access the variable X from …

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

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

  8. How can i serialize property of c# in Unity - Stack Overflow

    Dec 14, 2022 · Unity generally does not care about public properties and won't show them in the Editor (unless you are using the problematic field:). Remember, you are using Unity, a middleware and CLR …

  9. databricks - Unity Catalog - External location ... - Stack Overflow

    Dec 27, 2022 · I'am trying to setup connection between Databricks and Azure data lake storage gen2 using Unity Catalog External Locations feature. Assumptions: Adls is behind private endpoint …

  10. Unity - How to detect collision on a child object from the parent ...

    Jan 30, 2017 · When a collision occurs, Unity will search up the hierarchy for the nearest Rigidbody and run any scripts on that same GameObject. So, the simple approach is to make sure the rigidbody is …