Hi,
What the use of the keyword [Tool] in C#?
#region Assembly GodotSharp, Version=1.0.7333.4671, Culture=neutral, PublicKeyToken=null
// GodotSharp.dll
#endregion
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Class)]
public class ToolAttribute : Attribute
{
public ToolAttribute();
}
}
It is the same of in iGDscript? Can I see an example pls?