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

    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 …

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

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

  4. Use Unity API from another Thread or call a function in the main …

    Jan 2, 2020 · Unity is not Thread safe, so they decided to make it impossible to call their API from another Thread by adding a mechanism to throw an exception when its API is used from …

  5. In Unity, how can I pass values from one script to another?

    Dec 15, 2012 · 31 In Unity, I want one object to have a falling speed variable that all the other objects can access. For various reasons, I can't use the inbuilt gravity for what I'm trying to do. …

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

  7. How to jump in Unity 3d? - Stack Overflow

    Oct 14, 2019 · How can I make a character jump in my 3D game?

  8. c# - Scale GameObject in Unity - Stack Overflow

    Aug 31, 2016 · How can I increase / decrease the size of objects in Unity? Example: public GameObject sprite; public float scale = 2.0f; void ScaleResolution() { sprite = sprite*scale; …

  9. How to make an enum-like Unity inspector drop-down menu from …

    I'm making a Unity C# script that is meant to be used by other people as a character dialog tool to write out conversations between multiple game characters. I have a DialogueElement class …

  10. How to work with units (meters) in unity - Stack Overflow

    Feb 22, 2015 · Once you've settled this, in meters, feet or "unity scale", take note of the primitives' size and stick to it, this way the actual units won't be that important but the coherence between …