-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Extract information from ProjectSettings folder #1158
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2. Add inspections for SceneManager.LoadScene
2. Clean up
6043a13
to
b7407e4
Compare
2. Add tests for completion and quickfixes
<Tag externalName="LoadSceneUnknownSceneNameWarning.HIGHLIGHTING_ID" default="WARNING"> | ||
<Title>There is no scene with same name in the build settings</Title> | ||
<Description> | ||
Scene is not presented in the Unity build settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The scene is missing from the Unity build settings
2. File templates is shown now 3. Update text for warnings 4. Temporary ignore front-end tests
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Extract information from
EditorBuildSettings.asset
Completion for
SceneManager.LoadScene..
,EditorSceneManager.OpenScene
8 new warnings:
Unexisting scene warning
Scene name is nor presented at build settings warning
Scene index is out of range warning
Using disabled scene warning
Using simple scene name when several scene with same simple name are presented in build settings
Unknown tag
Unknown layer
Unknown input name
3 new quick fixes
Add scene to build settings (Rider only)
Enable scene in build settings (Rider only)
Change simple scene name to full
Extract information from
TagManager.asset
Extract information from
InputManager.asset
Completion for tags (
CompareTag
and==
with tag)Completion for layers (
LayerMask.
)Completion for
Input.Get..()
Update CHANGELOG.md
Add tests