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

  2. How to set text in InputField in UnityEngine by code

    Oct 23, 2022 · My problem is that after my changes in code, Unity doesn't do any actions with InputField (after starting the game, I mean). I want that after setting text value for InputField, this one changes in...

  3. 'Random' is an ambiguous reference between 'UnityEngine.Random' …

    Oct 24, 2020 · -1 This question already has answers here: Trying to make a random number generator in C# unity 4.69 (1 answer) Resolving an ambiguous reference (4 answers)

  4. VS Code doesn't recognise "using UnityEngine" as a valid namespace ...

    May 22, 2022 · I opened the ".cs" file from Unity after creating a C# file in my project, however neither UnityEngine nor (obviously) MonoBehaviour is detected in VS Code. Due to this, Intellisense also …

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

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

    Feb 14, 2011 · 3 Unity supports: 1. UnityScript (Is known as Javascript but includes more functionality for the Unity game engine. I think this could be very easy to learn) 2. Boo (No experience) 3. C# (I …

  7. How do to use a python script in Unity? - Stack Overflow

    Feb 18, 2022 · I try to use python once on Unity and I found a few ways: There is a package call "IronPython" where you can add a python file to your unity project and then call a function from C# to …

  8. unity game engine - Why unityengine.ui is not recognized ... - Stack ...

    Mar 31, 2021 · UnityEngine.UI namespace is a part of the aditional package called Unity UI, and it seems you don't have it imported in the project. Click on Window on the top-left menu in Unity Editor …

  9. unity game engine - 'Input' is an ambiguous reference between ...

    May 13, 2024 · using UnityEngine; using UnityEngine.Windows; The problem lies in the fact that both these namespaces contain a definition for Input. As you apparently want to use UnityEngine.Input, …

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

    Feb 22, 2015 · Units are somewhat arbitrary in 3D engines, even Unity. Though sometimes there will be aspects of the engine that expect a certain unit to real-world scale. Picking 1 unit to = 1 meter is a …