34 lines
763 B
C#
34 lines
763 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 05:48:46
|
|
* Version: 1.0.4
|
|
*/
|
|
|
|
using System;
|
|
|
|
namespace CustomAttributes
|
|
{
|
|
/// <summary>
|
|
/// Нажатие на кнопку в редакторе
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class EditorButtonAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Button text
|
|
/// </summary>
|
|
public string name;
|
|
|
|
/// <summary>
|
|
/// Add Button to Inspector
|
|
/// </summary>
|
|
/// <param name="name">Button text</param>
|
|
public EditorButtonAttribute(string name)
|
|
{
|
|
this.name = name;
|
|
}
|
|
}
|
|
}
|