Skip to content

Commit 27bf7d7

Browse files
committed
Set Help URLs and component menu paths
1 parent 796ad4c commit 27bf7d7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Runtime/CheckerboardTextureDrawer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ namespace Zigurous.Graphics
55
/// <summary>
66
/// Draws a texture of a checkerboard pattern.
77
/// </summary>
8-
[AddComponentMenu("Zigurous/Graphics/Checkerboard Texture Drawer")]
98
[CreateAssetMenu(menuName = "Zigurous/Graphics/Checkerboard Texture Drawer")]
109
[HelpURL("https://docs.zigurous.com/com.zigurous.graphics/api/Zigurous.Graphics/CheckerboardTextureDrawer")]
1110
public sealed class CheckerboardTextureDrawer : TextureDrawer

Runtime/TextureDrawer.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ namespace Zigurous.Graphics
55
/// <summary>
66
/// The base class to draw a custom texture at runtime.
77
/// </summary>
8+
[HelpURL("https://docs.zigurous.com/com.zigurous.graphics/api/Zigurous.Graphics/TextureDrawer")]
89
public abstract class TextureDrawer : ScriptableObject
910
{
1011
/// <summary>

Runtime/TextureDrawerRenderer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
namespace Zigurous.Graphics
55
{
66
[ExecuteAlways]
7+
[AddComponentMenu("Zigurous/Graphics/Texture Drawer Renderer")]
8+
[HelpURL("https://docs.zigurous.com/com.zigurous.graphics/api/Zigurous.Graphics/TextureDrawerRenderer")]
79
[RequireComponent(typeof(Renderer))]
810
public sealed class TextureDrawerRenderer : MonoBehaviour
911
{

0 commit comments

Comments
 (0)