Instances of my plugin won't show up as options when you use Add Child action on it. What do I need to do to make it available there?
I thought it might have something to do with plugin.js (maybe a new option?). I already have:
this._info.SetIsResizable(true);
this._info.SetIsRotatable(true);
this._info.SetSupportedRuntimes(["c2", "c3"]);
this._info.SetHasAnimations(true);
this._info.SetIsSingleGlobal(false);
this._info.SetMustPreDraw(true);
this._info.SetCanBeBundled(false);
this._info.AddCommonPositionACEs();
this._info.AddCommonAngleACEs();
this._info.AddCommonAppearanceACEs();
this._info.AddCommonZOrderACEs();
Is anything there incompatible? Is anything missing?