Skip to content

Commit

Permalink
Add GraphicDebugPage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haruma-K committed Mar 26, 2023
1 parent 4d9b42f commit 800781c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Collections.Generic;
using UnityEngine;

namespace UnityDebugSheet.Runtime.Extensions.Unity
{
public sealed class GraphicsDebugPage : PropertyListDebugPageBase<Graphics>
{
public override List<string> IgnoreTargetPropertyNames { get; } = new List<string>
{
nameof(Graphics.activeColorBuffer),
nameof(Graphics.activeDepthBuffer)
};
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 800781c

Please sign in to comment.