About 591,000 results
Open links in new tab
  1. How to make the script wait/sleep in a simple way in unity

    In Unity when exiting Play mode and returning to Edit mode you can make use of EditorApplication.playModeStateChanged specifically …

  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. How To Play Animation Through Script? - Unity - Stack Overflow

    Jun 2, 2020 · How To Play Animation Through Script? - Unity Asked 5 years, 1 month ago Modified 5 years, 1 month ago Viewed 54k times

  4. Reload Scripts Assemblies (busy for long time) Unity Freezes

    May 4, 2022 · Whenever I make any changes in scripts, even small changes, Unity script assemblies take too much of time to compile and load. Sometimes it freezes Unity entirely and …

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

    Search for the issue gives a number of solutions, but they don't work for some reason in mine Unity3D 5.4. Like camera inside a sphere I do not see cull and/or sides in material in Unity …

  6. In Unity (C#), why am I getting a ... - Stack Overflow

    Jun 16, 2020 · In Unity (C#), why am I getting a NullReferenceException and how do I fix it? [duplicate] Asked 5 years, 1 month ago Modified 4 years, 3 months ago Viewed 15k times

  7. c# - Making a timer in Unity - Stack Overflow

    Nov 4, 2018 · I have a problem in Unity. I need a countdown in my project. But this countdown will count 2 times. For example, 3 seconds a job will be done, 2 seconds another job will be done …

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

    Jul 23, 2015 · Changing color of of gameObject in Unity Asked 9 years, 11 months ago Modified 9 years, 1 month ago Viewed 39k times

  9. How to Rename a Unity Project? - Stack Overflow

    I want the entire unity project to be in a subfolder of the 'main' project folder, which will contain things like docs and source control hidden folders, build artifact folders, etc. I'd like to name …

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