However, it doesn't seem to fire in an AddOn.
As shown in the code below, the Print() statement never yields to the Output window.
Thoughts? Am I missing something?
public override void CopyTo(NinjaScript ninjaScript)
{
Print("COPY TO FIRED"); // <-- THIS NEVER PRINTS
base.CopyTo(ninjaScript);
}

Comment