Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
Menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
Chman committed Nov 18, 2017
1 parent 3710239 commit d653ff4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions PostProcessing/Runtime/PostProcessDebug.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
namespace UnityEngine.Rendering.PostProcessing
{
[ExecuteInEditMode]
[AddComponentMenu("Rendering/Post-process Debug", 1002)]
public sealed class PostProcessDebug : MonoBehaviour
{
public PostProcessLayer postProcessLayer;
Expand Down
2 changes: 1 addition & 1 deletion PostProcessing/Runtime/PostProcessLayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace UnityEngine.Rendering.PostProcessing

// TODO: XMLDoc everything (?)
[DisallowMultipleComponent, ExecuteInEditMode, ImageEffectAllowedInSceneView]
[AddComponentMenu("Rendering/Post-process Layer", -1)]
[AddComponentMenu("Rendering/Post-process Layer", 1000)]
[RequireComponent(typeof(Camera))]
public sealed class PostProcessLayer : MonoBehaviour
{
Expand Down
2 changes: 1 addition & 1 deletion PostProcessing/Runtime/PostProcessVolume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace UnityEngine.Rendering.PostProcessing
//

[ExecuteInEditMode]
[AddComponentMenu("Rendering/Post-process Volume", -1)]
[AddComponentMenu("Rendering/Post-process Volume", 1001)]
public sealed class PostProcessVolume : MonoBehaviour
{
// Modifying sharedProfile will change the behavior of all volumes using this profile, and
Expand Down

0 comments on commit d653ff4

Please sign in to comment.