Skip to content

Commit

Permalink
Fix duplicate menu name (Unity-Technologies#6230)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytann committed Nov 8, 2021
1 parent e1ff794 commit 3246286
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ static class GameObjectCreation
{
const int k_PixelPerfectCameraGameObjectMenuPriority = 5;

[MenuItem("GameObject/2D Object/Pixel Perfect Camera", priority = k_PixelPerfectCameraGameObjectMenuPriority)]
[MenuItem("GameObject/2D Object/Pixel Perfect Camera (URP)", priority = k_PixelPerfectCameraGameObjectMenuPriority)]
static void GameObjectCreatePixelPerfectCamera(MenuCommand menuCommand)
{
var go = CreateGameObject("Pixel Perfect Camera", menuCommand, new[] { typeof(PixelPerfectCamera) });
Expand Down

0 comments on commit 3246286

Please sign in to comment.