Is it possible to have user defined input paremeters within an AddOn?
Using the sample AddOn code I have tried to add a parameter to:
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = "Example AddOn demonstrating some of the framework's capabilities";
Name = "AddOn Framework";
Round = false;
}
}
#region Properties
[NinjaScriptProperty]
[Display(Name = "Round", Description = "Round", Order = 1, GroupName = "Parameters")]
public bool Round
{ get; set; }
#endregion

Comment