We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Menu' does not contain a definition for
When I put UniVSCode inside the "Editor" folder (because it's using UnityEditor; ). I get the following error:
using UnityEditor;
'Menu' does not contain a definition for 'SetChecked'
If I put it in the Plugins folder, I don't get the error, but I can't make standalone builds.
It might be a Unity bug. I've worked around it by using #if UNITY_EDITOR instead of the "Editor" folder.
#if UNITY_EDITOR
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I put UniVSCode inside the "Editor" folder (because it's
using UnityEditor;
). I get the following error:If I put it in the Plugins folder, I don't get the error, but I can't make standalone builds.
It might be a Unity bug. I've worked around it by using
#if UNITY_EDITOR
instead of the "Editor" folder.The text was updated successfully, but these errors were encountered: